질문과 답변
윈 도 우 빌더 스크립트 비교? ( Config.Script )
2022.12.11 13:44
Config.Script
아래의 빌더 스크립드 2가지 같은것 같지만
두 파일은 서로 다른것입니다
서로 빌더의 결과물이 달라집니다
틀린점을 찾기가 힘드네요
비교가능하신분 있을까요
댓글 [2]
-
이름 2022.12.11 14:05
-
zerojiddu 2022.12.11 14:39 두 파일 차이 비교할때 파워쉘에서 이걸 쳐도 됩니다.
compare-Object -referenceObject $(get-content .\Config.Script) -differenceObject $(get-content .\Config1.Script)
파일 해쉬 비교해도 당연히 틀리고요.
(get-filehash '.\Config.Script').hash
(get-filehash '.\Config1.Script').hash
if((get-filehash '.\Config.Script').hash -ne (get-filehash '.\Config1.Script').hash){"Script Files are Different"} else{"Script Files are Same"}
Config.Script // Config.Script1
::-------
[Variables]
%CacheVersion%=1
[Variables]
%CacheVersion%=6
::-------
::======
RegHiveLoad,Src_System,%Gtemp%\Install.hives\SYSTEM
RegHiveunLoad,Src_System
RegHiveLoad,Tmp_Install_System,%Gtemp%\Install.hives\SYSTEM
RegHiveunLoad,Tmp_Install_System
::======
::-------
RegWrite,HKLM,0x1,Tmp_Software\Microsoft\Windows\CurrentVersion\OEMInformation,Manufacturer,WinXPE
RegWrite,HKLM,0x1,Tmp_Software\Microsoft\Windows\CurrentVersion\OEMInformation,SupportURL,http://win10se.cwcodes.net/Compressed/index.php
RegWrite,HKLM,0x1,Tmp_Software\Microsoft\Windows\CurrentVersion\OEMInformation,Manufacturer,WindowsXPE
RegWrite,HKLM,0x1,Tmp_Software\Microsoft\Windows\CurrentVersion\OEMInformation,SupportURL,https://windowsforum.kr/
::-------
::======
RegHiveLoad,Src_Software,%Gtemp%\Install.hives\SOFTWARE
RegHiveunLoad,Src_Software
RegHiveLoad,Tmp_Install_Software,%Gtemp%\Install.hives\SOFTWARE
RegHiveunLoad,Tmp_Install_Software
::======
::-------
// In pecmd.ini EXEC @!%WinDir%\System32\Net.exe Start Wlansvc - EXEC @!%WinDir%\System32\Net.exe Start WinHttpAutoProxySvc
// In pecmd.ini EXEC !%WinDir%\System32\Net.exe Start Wlansvc - EXEC !%WinDir%\System32\Net.exe Start WinHttpAutoProxySvc
::-------