Sub test2()
set WshShell = WScript.CreateObject("WScript.Shell")
WshShell.Run "star.exe"
WScript.Sleep 500
WshShell.AppActivate "Calculator"
WScript.Sleep 500
WshShell.SendKeys "c"
WScript.Sleep 500
WshShell.SendKeys "pc"
WScript.Sleep 500
WshShell.SendKeys "{tab}"
WScript.Sleep 500
WshShell.SendKeys "1111"
WScript.Sleep 500
WshShell.SendKeys "{tab}"
WScript.Sleep 500
WshShell.SendKeys "2222"
WScript.Sleep 500
WshShell.SendKeys "{tab}"
WScript.Sleep 500
WshShell.SendKeys "3333"
WScript.Sleep 500
'WshShell.SendKeys "%{F4}" 'alt+F4 : 종료버튼
set wshshell = nothing
End Sub
출처:
http://manian.connect.kr/?mid=B0204004&page=17&document_srl=1079886&sort_index=regdate&order_type=desc
''------< Customizer.vbs >------
Option Explicit
Dim Shell, FSO, Network, Recent, Favorite, Profile, LinkPath, cmdFile
Set Shell = WScript.CreateObject("WScript.Shell")
Set FSO = WScript.CreateObject("Scripting.FileSystemObject")
Set Network = WScript.CreateObject("WScript.Network")
'' 에러 있어도 계속 진행
On Error Resume Next
''zip 폴더 사용않기, 팩스뷰어 사용않기..
Shell.Run "regsvr32 /u /s zipfldr.dll"
Shell.Run "regsvr32 /u /s shimgvw.dll"
Shell.Run "regsvr32 /u /s msimtf.dll"
Shell.Run "regsvr32 /u /s mscft.dll"
Recent = Shell.SpecialFolders("Recent")
Favorite = Shell.SpecialFolders("Favorites")
Profile = "C:Documents and Settings" & Network.UserName
FSO.DeleteFile("C:WINDOWS*.bmp")
FSO.DeleteFile("C:WINDOWSKB*.log")
FSO.DeleteFile("C:WINDOWSWebWallpaper*.jpg")
''도스용 파일 삭제
FSO.DeleteFile("C:AUTOEXEC.BAT")
FSO.DeleteFile("C:CONFIG.SYS")
FSO.DeleteFile("C:IO.SYS")
FSO.DeleteFile("C:MSDOS.SYS")
FSO.DeleteFile(Recent & "*.*")
FSO.DeleteFile(Favorite & "*.url")
''임시파일들 삭제 (Temp 폴더의 폴더들도 삭제하려면 DeleteFolder 메서드를 같이 써 줘야 한다)
FSO.DeleteFile("C:WINDOWSTemp*.*"), True
FSO.DeleteFile(Profile & "Cookies*.txt"), True
FSO.DeleteFile(Profile & "Local SettingsTemp*.*"), True
FSO.DeleteFile(Profile & "Local SettingsTemporary Internet Files*.*"), True
FSO.DeleteFile(Profile & "Local SettingsTemporary Internet FilesContent.IE5*.*"), True
FSO.DeleteFolder("C:WINDOWSTemp*.*"), True
FSO.DeleteFolder(Profile & "Local SettingsTemp*.*"), True
FSO.DeleteFile(Profile & "Favorites*.url"), True
FSO.DeleteFile(Profile & "Favorites연결*.url"), True
''스크린세이브 삭제
FSO.DeleteFile("C:WINDOWSsystem32dllcache*.scr"), True
FSO.DeleteFile("C:WINDOWSsystem32*.scr"), True
''최대절전모드 사용안함 + C:hiberfil.sys 삭제
FSO.DeleteFile("C:hiberfil.sys"), True
'' 연결줄에 Delete 폴더 만들고 임시폴더들 바로가기 생성
FSO.CreateFolder(Profile & "Favorites연결Delete")
LinkPath = Profile & "Favorites연결Delete"
Set link1 = Shell.CreateShortcut(SavePath & "내 최근 문서.lnk")
link1.TargetPath = Recent
link1.Save
Set link2 = Shell.CreateShortcut(SavePath & "C_Temp.lnk")
link2.TargetPath = "C:WINDOWSTemp"
link2.Save
Set link3 = Shell.CreateShortcut(SavePath & "Cookies.lnk")
link3.Targ제Path = Profile & "Cookies"
link3.Save
Set link4 = Shell.CreateShortcut(SavePath & "Temp.lnk")
link4.TargetPath = Profile & "Local SettingsTemp"
link4.Save
Set link5 = Shell.CreateShortcut(SavePath & "Temporary Internet Files.lnk")
link5.TargetPath = Profile & "Local SettingsTemporary Internet Files"
link5.Save
'' 마우스 우측 메뉴에 "Print File List" 메뉴 추가하기
Shell.RegWrite "HKCRDirectoryshellPrint List", "Print File List"
Shell.RegWrite "HKCRDirectoryshellPrint Listcommand", "C:WindowsSystem32MakeList.cmd"
Set cmdFile = FSO.CreateTextFile("C:WindowsSystem32MakeList.cmd", true)
cmdFile.WriteLine("@echo off")
cmdFile.WriteLine("DIR >FileList.txt /b /n /-d")
cmdFile.Write("EXIT")
cmdFile.Close
''레지스트리 ctfmo.exe 삭제
Shell.RegDelete "HKCUSoftwareMicrosoftWindowsCurrentVersionRunctfmon.exe"
''=======< Application Install >======
''Intel Chipset Utility 설치 ( 리턴값 : 확인=>1 , 취소=>2 )
''For silent install with auto-reboot = infinst_autol.exe -a -b -s
''For silent install without auto-reboot = infinst_autol.exe -a -s
If MsgBox ("Intel Chipset Utility 를 설치하시겠습니까?", 1) = 1 Then
Shell.Run "C:TEMPTWEAKinfinst_autol.exe -a -s"
End If
''Windows Media Component Update 설치
If MsgBox ("Windows Media Component Update 를 설치하시겠습니까?", 1) = 1 Then
Shell.Run "C:TEMPTWEAKwm320920_8.exe /Q:A /R:N"
End If
''DirectX 9.0c 설치
If MsgBox ("DirectX 9.0c 를 설치하시겠습니까?", 1) = 1 Then
Shell.Run "C:TEMPTWEAKdirectx_9c_redist.exe /silent"
End If
''MS JAVA VM 설치
If MsgBox ("MS JAVA VM 을 설치하시겠습니까?", 1) = 1 Then
Shell.Run "C:TEMPTWEAKMSJAVX86.EXE"
End If
''기타 등등...설치...
''윈도 설정 최적화 레지스트리 파일 병합
Shell.Run "regedit /s C:TEMPTWEAKTWEAK.REG"
FSO.DeleteFolder("C:Temp"), True
MsgBox "수고하셨습니다.^^" & Chr(13) & " " & Chr(13) & "설정을 적용하기위해 꼭 재부팅하세요"
WScript.Quit
===================================================================================
;-------< TWEAK.REG >------
REGEDIT4
; 시작메뉴 줄이기
[HKEY_CURRENT_USERSoftwareMicrosoftWindowsCurrentVersionPoliciesExplorer]
"NoRecentDocsMenu"=dword:00000001
"NoSMHelp"=dword:00000001
; AVI, MPG, MPE, MPEG 파일 미리읽기 기능 제거
[-HKEY_CLASSES_ROOT.aviShellEx]
[-HKEY_CLASSES_ROOT.mpgShellEx]
[-HKEY_CLASSES_ROOT.mpeShellEx]
[-HKEY_CLASSES_ROOT.mpegShellEx]
; 내컴퓨터에서 공유문서 제거
[-HKEY_LOCAL_MACHINESOFTWAREMicrosoftWindowsCurrentVersionExplorerMyComputerNameSpaceDelegateFolders{59031a47-3f72-44a7-89c5-5595fe6b30ee}]
; Windows 탐색기 폴더의 우클릭속성에 ''명령프롬프트 열기'' 항목 추가
[HKEY_CLASSES_ROOTDirectoryshellcmd]
@="명령프롬프트 열기"
[HKEY_CLASSES_ROOTDirectoryshellcmdcommand]
@="cmd.exe /k "cd %L""
; ~의 바로가기 없애기
[HKEY_CURRENT_USERSoftwareMicrosoftWindowsCurrentVersionExplorer]
"link"=hex:00,00,00,00
; 바탕화면 정리 OFF
[HKEY_CURRENT_USERSoftwareMicrosoftWindowsCurrentVersionExplorerDesktopCleanupWiz]
"NoRun"=dword:00000001
; Tour OFF
[HKEY_CURRENT_USERSoftwareMicrosoftWindowsCurrentVersionAppletsTour]
"RunCount"=dword:00000000
[HKEY_LOCAL_MACHINESoftwareMicrosoftWindowsCurrentVersionAppletsTour]
"RunCount"=dword:00000000
; 시작, 종료음 없애기
;[HKEY_USERS.DEFAULTAppEventsSchemesApps.DefaultSystemExit.Default]
;@=hex(2):00,00
;[HKEY_USERS.DEFAULTAppEventsSchemesApps.DefaultSystemExit.Current]
;@=hex(2):00,00
;[HKEY_USERS.DEFAULTAppEventsSchemesApps.DefaultSystemStart.Default]
;@=hex(2):00,00
;[HKEY_USERS.DEFAULTAppEventsSchemesApps.DefaultSystemStart.Current]
;@=hex(2):00,00
;◀ 최대절전 모드 X ▶
; + C:hiberfil.sys 파일 삭제해야 함
[HKEY_LOCAL_MACHINESYSTEMCurrentControlSetControlSession ManagerPower]
"AcPolicy"=hex:01,00,00,00,00,00,00,00,03,00,00,00,10,00,00,00,02,00,00,00,03,00,00,00,00,00,00,00,02,00,00,00,01,00,00,00,00,00,00,00,01,00,00,00,00,00,00,00,02,00,00,00,01,00,00,00,00,00,00,00,00,00,00,00,32,00,a1,74,02,00,00,00,02,00,00,00,02,00,00,00,01,00,00,00,24,f2,07,00,00,00,00,00,03,00,00,00,01,00,00,00,03,00,00,00,03,00,00,00,04,00,00,c0,01,00,00,00,05,00,00,00,01,00,00,00,0a,00,00,00,00,00,00,00,03,00,00,00,01,00,01,00,01,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,02,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,03,00,00,00,00,00,b0,04,00,00,00,00,00,00,01,00,00,00,06,86,8e,bf,02,00,00,00,00,00,00,00,01,64,64,00,02,00,00,00,04,00,00,c0,00,00,00,00,
[HKEY_LOCAL_MACHINESYSTEMCurrentControlSetControlSession ManagerPower]
"DcPolicy"=hex:01,00,00,00,00,00,00,00,03,00,00,00,10,00,00,00,02,00,00,00,03,00,00,00,00,00,00,00,02,00,00,00,01,00,00,00,00,00,00,00,01,00,00,00,2d,39,db,77,02,00,00,00,00,00,00,00,00,00,00,00,2c,01,00,00,32,03,db,77,02,00,00,00,02,00,00,00,02,00,00,00,01,00,00,00,70,f3,f5,77,84,03,00,00,03,00,00,00,01,00,00,00,03,00,00,00,03,00,00,00,04,00,00,c0,01,00,00,00,05,00,00,00,01,00,00,00,0a,00,00,00,00,00,00,00,03,00,00,00,01,00,01,00,01,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,02,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,03,00,00,00,00,00,2c,01,00,00,01,ee,07,00,5a,c5,f7,77,00,00,00,00,00,00,00,00,58,02,00,00,01,64,64,00,02,00,00,00,04,00,00,c0,00,00,00,00,
[HKEY_LOCAL_MACHINESYSTEMCurrentControlSetControlSession ManagerPower]
"Heuristics"=hex:05,00,00,00,00,01,00,00,00,00,00,00,00,00,00,00,3f,42,0f,00,
;▶ 휴지통 5%
[HKEY_LOCAL_MACHINESOFTWAREMicrosoftWindowsCurrentVersionExplorerBitBucket]
"Percent"=dword:00000005
;▶ 자동작업 종료
[HKEY_USERS.DEFAULTControl PanelDesktop]
"AutoEndTasks"="1"
;▶▶ 시스템 정보 설정 ◀◀
;▶ 오류시 자동 재부팅 OFF
[HKEY_LOCAL_MACHINESYSTEMCurrentControlSetControlCrashControl]
"AutoReboot"=dword:00000000
;▶ 오류 보고 OFF
[HKEY_LOCAL_MACHINESOFTWAREMicrosoftPCHealthErrorReporting]
"DoReport"=dword:00000000
;▶ 자동 업데이트 OFF
[HKEY_LOCAL_MACHINESOFTWAREMicrosoftWindowsCurrentVersionWindowsUpdateAuto Update]
"ConfigVer"=dword:00000001
[HKEY_LOCAL_MACHINESOFTWAREMicrosoftWindowsCurrentVersionWindowsUpdateAuto Update]
"AUOptions"=dword:00000001
;▶ 원격 지원 OFF
[HKEY_LOCAL_MACHINESYSTEMCurrentControlSetControlTerminal Server]
"fAllowToGetHelp"=dword:00000000
[HKEY_LOCAL_MACHINESYSTEMCurrentControlSetControlTerminal Server]
"fEnableSalem"=dword:00000000
;▶ 시스템 복원 OFF
[HKEY_LOCAL_MACHINESOFTWAREMicrosoftWindows NTCurrentVersionSystemRestore]
"DisableSR"=dword:00000001
[HKEY_LOCAL_MACHINESYSTEMCurrentControlSetServicessr]
"Start"=dword:00000004
[HKEY_LOCAL_MACHINESYSTEMCurrentControlSetServicessr]
"ImagePath"=hex(2):5c,53,79,73,74,65,6d,52,6f,6f,74,5c,73,79,73,74,65,6d,33,32,5c,44,52,49,56,45,52,53,5c,73,72,2e,73,79,73,00,
[HKEY_LOCAL_MACHINESYSTEMCurrentControlSetServicessrParameters]
"FirstRun"=dword:00000001
[HKEY_LOCAL_MACHINESYSTEMCurrentControlSetServicessrservice]
"Start"=dword:00000004
; <시스템 복원기능 켜기>
;[HKEY_LOCAL_MACHINESOFTWAREMicrosoftWindows NTCurrentVersionSystemRestore]
;"DisableSR"=dword:00000000
;[HKEY_LOCAL_MACHINESYSTEMCurrentControlSetServicessr]
;"Start"=dword:00000000
;[HKEY_LOCAL_MACHINESYSTEMCurrentControlSetServicessr]
;"ImagePath"=hex(2):73,79,73,74,65,6d,33,32,5c,44,52,49,56,45,52,53,5c,73,72,2e,73,79,73,00,
;[HKEY_LOCAL_MACHINESYSTEMCurrentControlSetServicessrParameters]
;"FirstRun"=dword:00000000
;System Restore Service
;[HKEY_LOCAL_MACHINESYSTEMCurrentControlSetServicessrservice]
;"Start"=dword:00000002
;▶▶ 성능 - 시각효과 ◀◀
[HKEY_CURRENT_USERControl PanelDesktop]
"DragFullWindows"="0"
[HKEY_CURRENT_USERControl PanelDesktop]
"UserPreferencesMask"=hex:b2,3a,07,80,
[HKEY_CURRENT_USERControl PanelDesktopWindowMetrics]
"MinAnimate"="0"
[HKEY_CURRENT_USERSoftwareMicrosoftWindowsCurrentVersionExplorerAdvanced]
"WebView"=dword:00000000
[HKEY_CURRENT_USERSoftwareMicrosoftWindowsCurrentVersionExplorerAdvanced]
"ListviewWatermark"=dword:00000000
[HKEY_CURRENT_USERSoftwareMicrosoftWindowsCurrentVersionExplorerAdvanced]
"TaskbarAnimations"=dword:00000000
[HKEY_CURRENT_USERSoftwareMicrosoftWindowsCurrentVersionExplorerVisualEffects]
"VisualFXSetting"=dword:00000003
;◀ 제어판 ▶
; 트레이에 볼륨아이콘 숨기기 -> 사운드 드라이버 설치해야 옵션 나타남
;마우스 포인트 맞추기
[HKEY_CURRENT_USERControl PanelMouse]
"SnapToDefaultButton"="1"
;네트워크 연결되면 트레이에 아이콘 표시
[HKEY_LOCAL_MACHINESYSTEMCurrentControlSetControlNetwork{4D36E972-E325-11CE-BFC1-08002BE10318}{66AE5067-564C-4A2A-A97D-9D90CB2D48C6}Connection]
"ShowIcon"=dword:00000001
인터넷 시간 동기화(x)
[HKEY_LOCAL_MACHINESYSTEMCurrentControlSetServicesW32TimeParameters]
"Type"="NoSync"
;◀ 폴더 옵션 ▶
[HKEY_CURRENT_USERSoftwareMicrosoftWindowsCurrentVersionExplorerAdvanced]
"Hidden"=dword:00000001
[HKEY_CURRENT_USERSoftwareMicrosoftWindowsCurrentVersionExplorerAdvanced]
"HideFileExt"=dword:00000000
[HKEY_CURRENT_USERSoftwareMicrosoftWindowsCurrentVersionExplorerAdvanced]
"SuperHidden"=dword:00000000
[HKEY_CURRENT_USERSoftwareMicrosoftWindowsCurrentVersionExplorerAdvanced]
"NoNetCrawling"=dword:00000001
[HKEY_CURRENT_USERSoftwareMicrosoftWindowsCurrentVersionExplorerAdvanced]
"DisableThumbnailCache"=dword:00000001
[HKEY_CURRENT_USERSoftwareMicrosoftWindowsCurrentVersionExplorerAdvanced]
"ShowSuperHidden"=dword:00000001
[HKEY_CURRENT_USERSoftwareMicrosoftWindowsCurrentVersionExplorerAdvanced]
"WebViewBarricade"=dword:00000001
[HKEY_CURRENT_USERSoftwareMicrosoftWindowsCurrentVersionExplorerAdvanced]
"FolderContentsInfoTip"=dword:00000000
[HKEY_CURRENT_USERSoftwareMicrosoftWindowsCurrentVersionExplorerHideMyComputerIcons]
"{21EC2020-3AEA-1069-A2DD-08002B30309D}"=dword:00000000
;◀ 메모장 ▶
[HKEY_CURRENT_USERSoftwareMicrosoftNotepad]
"lfFaceName"="굴림"
"lfWeight"=dword:00000190
"iPointSize"=dword:0000005a
"iCodePage"=dword:000003b5
"lfEscapement"=dword:00000000
"lfOrientation"=dword:00000000
"lfItalic"=dword:00000000
"lfUnderline"=dword:00000000
"lfStrikeOut"=dword:00000000
"lfCharSet"=dword:00000081
"lfOutPrecision"=dword:00000003
"lfClipPrecision"=dword:00000002
"lfQuality"=dword:00000001
"lfPitchAndFamily"=dword:00000032
"fWrap"=dword:00000000
"StatusBar"=dword:00000000
"fSaveWindowPositions"=dword:00000000
"szHeader"="&f"
"szTrailer"="&p 페이지"
"iMarginTop"=dword:000009c4
"iMarginBottom"=dword:000009c4
"iMarginLeft"=dword:000007d0
"iMarginRight"=dword:000007d0
"fMLE_is_broken"=dword:00000000
"iWindowPosX"=dword:0000020b
"iWindowPosY"=dword:00000023
"iWindowPosDX"=dword:000001e5
"iWindowPosDY"=dword:00000265
;◀ 인터넷 옵션 ▶
[HKEY_CURRENT_USERSoftwareMicrosoftInternet ExplorerMain]
"NoUpdateCheck"=dword:00000001
[HKEY_CURRENT_USERSoftwareMicrosoftInternet ExplorerMain]
"Start Page"="about:blank"
[HKEY_CURRENT_USERSoftwareMicrosoftInternet ExplorerMain]
"Enable_MyPics_Hoverbar"="no"
[HKEY_CURRENT_USERSoftwareMicrosoftInternet ExplorerMain]
"Enable AutoImageResize"="no"
[HKEY_CURRENT_USERSoftwareMicrosoftInternet ExplorerMain]
"NotifyDownloadComplete"="no"
[HKEY_CURRENT_USERSoftwareMicrosoftInternet ExplorerMain]
"SmoothScroll"=dword:00000000
[HKEY_CURRENT_USERSoftwareMicrosoftInternet ExplorerMain]
"NscSingleExpand"=dword:00000000
[HKEY_CURRENT_USERSoftwareMicrosoftInternet ExplorerMain]
"Enable Browser Extensions"="no"
[HKEY_CURRENT_USERSoftwareMicrosoftInternet ExplorerMain]
"Page_Transitions"=dword:00000000
[HKEY_CURRENT_USERSoftwareMicrosoftInternet ExplorerMainFeatureControlFEATURE_LOCALMACHINE_LOCKDOWN]
"iexplore.exe"=dword:00000000
[HKEY_CURRENT_USERSoftwareMicrosoftWindowsCurrentVersionExplorerAutoComplete]
"AutoSuggest"="no"
;Auto-Complete
;[HKEY_CURRENT_USERSoftwareMicrosoftWindowsCurrentVersionExplorerAutoComplete]
;"Append Completion"="no"
[HKEY_CURRENT_USERSoftwareMicrosoftWindowsCurrentVersionInternet Settings]
"UrlEncoding"=dword:00000001
[HKEY_CURRENT_USERSoftwareMicrosoftWindowsCurrentVersionInternet Settings]
"SyncMode5"=dword:00000002
[HKEY_CURRENT_USERSoftwareMicrosoftWindowsCurrentVersionInternet SettingsConnections]
"DefaultConnectionSettings"=hex:3c,00,00,00,04,00,00,00,01,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,01,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,
[HKEY_CURRENT_USERSoftwareMicrosoftWindowsCurrentVersionInternet SettingsConnections]
"SavedLegacySettings"=hex:3c,00,00,00,1e,00,00,00,01,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,01,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,
[HKEY_CURRENT_USERSoftwareMicrosoftWindowsCurrentVersionInternet SettingsUrl History]
"DaysToKeep"=dword:00000002
[HKEY_CURRENT_USERSoftwareMicrosoftWindowsCurrentVersionWebcheck]
"NoScheduledUpdates"=dword:00000001
[HKEY_CURRENT_USERSoftwareMicrosoftInternet ExplorerMain]
"Window Title"=""
;◀ 입력도구 모음 숨기기 ▶
[HKEY_CURRENT_USERSoftwareMicrosoftCTFLangBar]
"ShowStatus"=dword:00000003
; 시작 프로그램의 ctfmon.exe 제거
[-HKEY_CURRENT_USERSoftwareMicrosoftWindowsCurrentVersionRun]
"ctfmon.exe"="C:\WINDOWS\system32\ctfmon.exe"
;◀ 시스템 트레이 볼륨 콘트롤 아이콘 숨기기 ▶
[HKEY_CURRENT_USERSoftwareMicrosoftWindowsCurrentVersionAppletsSysTray]
"Services"=dword:0000001b
;▶▶ 작업 표시줄 ◀◀
; -> 같은 종류 작업표시줄 그룹으로 표시(X) , 사용 않는 아이콘 숨기기(X) , 이전 시작 메뉴, 즐겨쓰는 메뉴 사용 X
; 삭제확인 묻기 X
;[HKEY_CURRENT_USERSoftwareMicrosoftWindowsCurrentVersionExplorer]
"ShellState"=hex:24,00,00,00,37,88,01,00,00,00,00,00,00,00,00,00,00,00,00,00,01,00,00,00,0d,00,00,00,00,00,00,00,00,00,00,00,
[HKEY_CURRENT_USERSoftwareMicrosoftWindowsCurrentVersionExplorer]
"EnableAutoTray"=dword:00000000
[HKEY_CURRENT_USERSoftwareMicrosoftWindowsCurrentVersionExplorerAdvanced]
"SuperHidden"=dword:00000000
[HKEY_CURRENT_USERSoftwareMicrosoftWindowsCurrentVersionExplorerAdvanced]
"StartMenuAdminTools"="NO"
[HKEY_CURRENT_USERSoftwareMicrosoftWindowsCurrentVersionExplorerAdvanced]
"StartMenuChange"=dword:00000001
[HKEY_CURRENT_USERSoftwareMicrosoftWindowsCurrentVersionExplorerAdvanced]
"CascadeMyPictures"="NO"
[HKEY_CURRENT_USERSoftwareMicrosoftWindowsCurrentVersionExplorerAdvanced]
"CascadeMyDocuments"="NO"
[HKEY_CURRENT_USERSoftwareMicrosoftWindowsCurrentVersionExplorerAdvanced]
"CascadeNetworkConnections"="NO"
[HKEY_CURRENT_USERSoftwareMicrosoftWindowsCurrentVersionExplorerAdvanced]
"StartMenuRun"=dword:00000001
[HKEY_CURRENT_USERSoftwareMicrosoftWindowsCurrentVersionExplorerAdvanced]
"CascadeControlPanel"="NO"
[HKEY_CURRENT_USERSoftwareMicrosoftWindowsCurrentVersionExplorerAdvanced]
"IntelliMenus"=dword:00000000
[HKEY_CURRENT_USERSoftwareMicrosoftWindowsCurrentVersionExplorerAdvanced]
"StartMenuFavorites"=dword:00000000
[HKEY_CURRENT_USERSoftwareMicrosoftWindowsCurrentVersionExplorerAdvanced]
"StartMenuScrollPrograms"="NO"
[HKEY_CURRENT_USERSoftwareMicrosoftWindowsCurrentVersionExplorerAdvanced]
"CascadePrinters"="NO"
[HKEY_CURRENT_USERSoftwareMicrosoftWindowsCurrentVersionExplorerAdvanced]
"TaskbarSizeMove"=dword:00000000
[HKEY_CURRENT_USERSoftwareMicrosoftWindowsCurrentVersionExplorerAdvanced]
"TaskbarGlomming"=dword:00000000
;◀ 화면보호기 없음 ▶
[HKEY_CURRENT_USERControl PanelDesktop]
"ScreenSaveActive"="0"
;◀ 폴더 레이아웃 ▶
[HKEY_CURRENT_USERSoftwareMicrosoftInternet ExplorerMain]
"StatusBarOther"=dword:00000001
[HKEY_CURRENT_USERSoftwareMicrosoftInternet ExplorerToolbar]
"{710EB7A1-45ED-11D0-924A-0020AFC7AC4D}"=hex:07,00,00,00,f2,03,00,00,7e,69,79,1e,c5,9c,d1,11,a8,3f,00,c0,4f,c9,9d,61,20,01,00,00,04,00,00,00,f3,03,00,00,7e,69,79,1e,c5,9c,d1,11,a8,3f,00,c0,4f,c9,9d,61,21,01,00,00,00,00,00,00,ff,ff,ff,ff,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,f6,03,00,00,7e,69,79,1e,c5,9c,d1,11,a8,3f,00,c0,4f,c9,9d,61,33,01,00,00,04,00,00,00,f5,03,00,00,7e,69,79,1e,c5,9c,d1,11,a8,3f,00,c0,4f,c9,9d,61,23,01,00,00,04,00,00,00,ff,ff,ff,ff,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,f4,03,00,00,7e,69,79,1e,c5,9c,d1,11,a8,3f,00,c0,4f,c9,9d,61,30,01,00,00,04,00,00,00,ff,ff,ff,ff,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,1f,70,00,00,a1,b7,0e,71,ed,45,d0,11,92,4a,00,20,af,c7,ac,4d,1f,70,00,00,04,00,00,00,1e,70,00,00,a1,b7,0e,71,ed,45,d0,11,92,4a,00,20,af,c7,ac,4d,1e,70,00,00,04,00,00,00,ff,ff,ff,ff,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,0d,04,00,00,a1,b7,0e,71,ed,45,d0,11,92,4a,00,20,af,c7,ac,4d,18,70,00,00,04,00,00,00,0e,04,00,00,a1,b7,0e,71,ed,45,d0,11,92,4a,00,20,af,c7,ac,4d,19,70,00,00,04,00,00,00,0f,04,00,00,a1,b7,0e,71,ed,45,d0,11,92,4a,00,20,af,c7,ac,4d,1a,70,00,00,04,00,00,00,ff,ff,ff,ff,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,11,70,00,00,a1,b7,0e,71,ed,45,d0,11,92,4a,00,20,af,c7,ac,4d,11,70,00,00,04,00,00,00,ff,ff,ff,ff,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,1b,70,00,00,a1,b7,0e,71,ed,45,d0,11,92,4a,00,20,af,c7,ac,4d,1b,70,00,00,04,00,00,00,
[HKEY_CURRENT_USERSoftwareMicrosoftInternet ExplorerToolbarShellBrowser]
[HKEY_CURRENT_USERSoftwareMicrosoftInternet ExplorerToolbarShellBrowser]
"{01E04581-4EEE-11D0-BFE9-00AA005B4383}"=hex:81,45,e0,01,ee,4e,d0,11,bf,e9,00,aa,00,5b,43,83,10,00,00,00,00,00,00,00,01,e0,32,f4,01,00,00,00,
[HKEY_CURRENT_USERSoftwareMicrosoftInternet ExplorerToolbarShellBrowser]
"ITBarLayout"=hex:11,00,00,00,4c,00,00,00,00,00,00,00,34,00,00,00,1f,00,00,00,52,00,00,00,01,00,00,00,a0,06,00,00,a0,0f,00,00,05,00,00,00,22,04,00,00,26,00,00,00,02,00,00,00,a1,06,00,00,a0,0f,00,00,04,00,00,00,a1,00,00,00,4d,02,00,00,03,00,00,00,a0,02,00,00,c5,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,
[HKEY_CURRENT_USERSoftwareMicrosoftInternet ExplorerToolbarShellBrowser]
"{0E5CBF21-D15F-11D0-8301-00AA005B4383}"=hex:21,bf,5c,0e,5f,d1,d0,11,83,01,00,aa,00,5b,43,83,22,00,1c,00,08,00,00,00,06,00,00,00,01,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,4c,00,00,00,01,14,02,00,00,00,00,00,c0,00,00,00,00,00,00,46,81,00,00,00,10,00,00,00,ec,ad,8d,7f,1e,2d,c5,01,32,60,c9,20,6e,30,c5,01,04,6f,e1,84,1e,2d,c5,01,00,00,00,00,00,00,00,00,01,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,47,01,14,00,1f,50,e0,4f,d0,20,ea,3a,69,10,a2,d8,08,00,2b,30,30,9d,19,00,2f,43,3a,5c,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,5c,00,31,00,00,00,00,00,74,32,a0,3b,10,00,44,4f,43,55,4d,45,7e,31,00,00,44,00,03,00,04,00,ef,be,74,32,ef,39,78,32,69,60,14,00,00,00,44,00,6f,00,63,00,75,00,6d,00,65,00,6e,00,74,00,73,00,20,00,61,00,6e,00,64,00,20,00,53,00,65,00,74,00,74,00,69,00,6e,00,67,00,73,00,00,00,18,00,36,00,31,00,00,00,00,00,78,32,b2,58,10,00,6f,77,6e,65,72,00,22,00,03,00,04,00,ef,be,74,32,a0,3b,78,32,c8,60,14,00,00,00,6f,00,77,00,6e,00,65,00,72,00,00,00,14,00,56,00,31,00,00,00,00,00,74,32,a8,3b,11,00,46,41,56,4f,52,49,7e,31,00,00,3e,00,03,00,04,00,ef,be,74,32,a0,3b,78,32,db,60,14,00,28,00,46,00,61,00,76,00,6f,00,72,00,69,00,74,00,65,00,73,00,00,00,40,73,68,65,6c,6c,33,32,2e,64,6c,6c,2c,2d,31,32,36,39,33,00,18,00,30,00,35,00,00,00,00,00,74,32,a8,3b,10,00,f0,c5,b0,ac,00,00,1c,00,03,00,04,00,ef,be,74,32,a4,3b,78,32,db,60,14,00,00,00,f0,c5,b0,ac,00,00,14,00,00,00,60,00,00,00,03,00,00,a0,58,00,00,00,00,00,00,00,72,6f,6b,00,00,00,00,00,00,00,00,00,00,00,00,00,5c,24,f9,36,c2,7e,78,46,95,70,b5,32,58,d5,74,a7,b2,89,73,5e,61,9c,d9,11,af,22,00,11,09,97,5e,e4,5c,24,f9,36,c2,7e,78,46,95,70,b5,32,58,d5,74,a7,b2,89,73,5e,61,9c,d9,11,af,22,00,11,09,97,5e,e4,00,00,00,00,
[HKEY_CURRENT_USERSoftwareMicrosoftWindowsCurrentVersionExplorer]
"IconUnderline"=""
[HKEY_CURRENT_USERSoftwareMicrosoftWindowsCurrentVersionExplorerSmallIcons]
[HKEY_CURRENT_USERSoftwareMicrosoftWindowsCurrentVersionExplorerSmallIcons]
"SmallIcons"="no"
[HKEY_CURRENT_USERSoftwareMicrosoftWindowsCurrentVersionExplorerMenuOrderFavorites]
[HKEY_CURRENT_USERSoftwareMicrosoftWindowsCurrentVersionExplorerMenuOrderFavorites]
"Order"=hex:08,00,00,00,02,00,00,00,0a,01,00,00,01,00,00,00,03,00,00,00,3e,00,00,00,00,00,00,00,30,00,35,00,00,00,00,00,74,32,a8,3b,10,00,f0,c5,b0,ac,00,00,1c,00,03,00,04,00,ef,be,74,32,a4,3b,78,32,db,60,14,00,00,00,f0,c5,b0,ac,00,00,14,00,00,00,00,00,00,00,64,00,00,00,01,00,00,00,56,00,36,00,c5,00,00,00,74,32,a8,3b,20,00,7c,b7,14,b5,24,c6,20,00,29,bc,a1,c1,6d,ad,20,00,48,c5,b4,b0,34,00,03,00,04,00,ef,be,74,32,a8,3b,78,32,70,5f,14,00,00,00,7c,b7,14,b5,24,c6,20,00,29,bc,a1,c1,6d,ad,20,00,48,c5,b4,b0,2e,00,75,00,72,00,6c,00,00,00,22,00,00,00,00,00,00,00,5c,00,00,00,02,00,00,00,4e,00,32,00,77,00,00,00,74,32,a8,3b,20,00,4d,53,4e,43,4f,4b,7e,31,2e,55,52,4c,00,00,32,00,03,00,04,00,ef,be,74,32,a8,3b,78,32,70,5f,14,00,00,00,4d,00,53,00,4e,00,2e,00,63,00,6f,00,2e,00,6b,00,72,00,2e,00,75,00,72,00,6c,00,00,00,1c,00,00,00,00,00,00,00,
[HKEY_CURRENT_USERSoftwareMicrosoftWindowsCurrentVersionExplorerMenuOrderFavorites연결]
[HKEY_CURRENT_USERSoftwareMicrosoftWindowsCurrentVersionExplorerMenuOrderFavorites연결]
"Order"=hex:08,00,00,00,02,00,00,00,8e,01,00,00,01,00,00,00,04,00,00,00,66,00,00,00,00,00,00,00,58,00,36,00,71,00,00,00,74,32,a8,3b,20,00,34,bb,cc,b8,20,00,48,00,6f,00,74,00,6d,00,61,00,69,00,6c,00,2e,00,34,00,03,00,04,00,ef,be,74,32,a8,3b,78,32,70,5f,14,00,00,00,34,bb,cc,b8,20,00,48,00,6f,00,74,00,6d,00,61,00,69,00,6c,00,2e,00,75,00,72,00,6c,00,00,00,24,00,00,00,00,00,00,00,62,00,00,00,01,00,00,00,54,00,36,00,77,00,00,00,74,32,a8,3b,20,00,f0,c5,b0,ac,20,00,ac,c0,a9,c6,90,c7,20,00,15,c8,58,c7,2e,00,32,00,03,00,04,00,ef,be,74,32,a8,3b,78,32,70,5f,14,00,00,00,f0,c5,b0,ac,20,00,ac,c0,a9,c6,90,c7,20,00,15,c8,58,c7,2e,00,75,00,72,00,6c,00,00,00,22,00,00,00,00,00,00,00,56,00,00,00,02,00,00,00,48,00,32,00,71,00,00,00,74,32,a8,3b,20,00,57,69,6e,64,6f,77,73,2e,75,72,6c,00,2e,00,03,00,04,00,ef,be,74,32,a8,3b,78,32,70,5f,14,00,00,00,57,00,69,00,6e,00,64,00,6f,00,77,00,73,00,2e,00,75,00,72,00,6c,00,00,00,1a,00,00,00,00,00,00,00,64,00,00,00,03,00,00,00,56,00,32,00,76,00,00,00,74,32,a8,3b,20,00,57,49,4e,44,4f,57,7e,31,2e,55,52,4c,00,00,3a,00,03,00,04,00,ef,be,74,32,a8,3b,78,32,70,5f,14,00,00,00,57,00,69,00,6e,00,64,00,6f,00,77,00,73,00,20,00,4d,00,65,00,64,00,69,00,61,00,2e,00,75,00,72,00,6c,00,00,00,1c,00,00,00,00,00,00,00,
[HKEY_CURRENT_USERSoftwareMicrosoftWindowsShellBags1Desktop]
"ItemPos1024x768(1)"=hex:00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,17,00,00,00,54,00,00,00,14,00,1f,48,ba,8f,0d,45,25,ad,d0,11,98,a8,08,00,36,1b,11,03,17,00,00,00,02,00,00,00,14,00,1f,50,e0,4f,d0,20,ea,3a,69,10,a2,d8,08,00,2b,30,30,9d,17,00,00,00,a6,00,00,00,14,00,1f,60,40,f0,5f,64,81,50,1b,10,9f,08,00,aa,00,2f,95,4e,17,00,00,00,9c,01,00,00,52,00,32,00,e1,01,00,00,76,32,01,4c,20,00,46,4c,59,45,58,50,7e,31,2e,4c,4e,4b,00,00,36,00,03,00,04,00,ef,be,76,32,01,4c,78,32,53,62,14,00,00,00,66,00,6c,00,79,00,45,00,78,00,70,00,6c,00,6f,00,72,00,65,00,72,00,2e,00,6c,00,6e,00,6b,00,00,00,1c,00,17,00,00,00,f8,00,00,00,52,00,32,00,bb,02,00,00,78,32,c7,58,20,00,49,4e,53,54,41,4c,7e,31,2e,4c,4e,4b,00,00,36,00,03,00,04,00,ef,be,78,32,c7,58,78,32,da,60,14,00,00,00,49,00,6e,00,73,00,74,00,61,00,6c,00,6c,00,52,00,69,00,74,00,65,00,2e,00,6c,00,6e,00,6b,00,00,00,1c,00,17,00,00,00,4a,01,00,00,4e,00,32,00,cd,02,00,00,78,32,6d,5f,20,00,4a,57,42,52,4f,57,7e,31,2e,4c,4e,4b,00,00,32,00,03,00,04,00,ef,be,78,32,6d,5f,78,32,6d,5f,14,00,00,00,6a,00,77,00,42,00,72,00,6f,00,77,00,73,00,65,00,72,00,2e,00,6c,00,6e,00,6b,00,00,00,1c,00,17,00,00,00,4a,01,00,00,00,00,00,00,
[HKEY_CURRENT_USERSoftwareMicrosoftWindowsShellNoRoamBags6Shell]
"Mode"=dword:00000004
[HKEY_CURRENT_USERSoftwareMicrosoftWindowsShellNoRoamBags6Shell]
"ColInfo"=hex:00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,fd,df,df,fd,0f,00,04,00,20,00,10,00,28,00,3c,00,00,00,00,00,01,00,00,00,02,00,00,00,03,00,00,00,28,01,60,00,78,00,78,00,00,00,00,00,01,00,00,00,02,00,00,00,03,00,00,00,ff,ff,ff,ff,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,
;◀ 서비스항목 조정 ▶
; 서비스 사용으로 바꾸려면 dword:00000004 를 dword:00000002 로...
;Computer Browser : 네트워크에 연결된 컴이 아니라면 불필요 (자동 - X)
[HKEY_LOCAL_MACHINESYSTEMCurrentControlSetServicesBrowser]
"Start"=dword:00000004
;Help and Support - 윈도우즈 도움말 (자동 - X)
[HKEY_LOCAL_MACHINESYSTEMCurrentControlSetServiceshelpsvc]
"Start"=dword:00000004
;Workstation : 개인 단독사용시 불필요 (자동 - X)
;[HKEY_LOCAL_MACHINESYSTEMCurrentControlSetServiceslanmanworkstation]
;"Start"=dword:00000004
; 윈도 메신저 사용않기
[HKEY_LOCAL_MACHINESYSTEMCurrentControlSetServicesMessenger]
"Start"=dword:00000004
;Remote Registry : 원격 접속자에게 레지 수정 허용 (자동 - X)
[HKEY_LOCAL_MACHINESYSTEMCurrentControlSetServicesRemoteRegistry]
"Start"=dword:00000004
;Secondary Logon - 혼자서 쓰는 PC면 필요 없다. (자동 - X)
[HKEY_LOCAL_MACHINESYSTEMCurrentControlSetServicesseclogon]
"Start"=dword:00000004
;Distribute Link Tracking Client : 네트워크 도메인간 NTFS 파일 연결 (자동 - X)
[HKEY_LOCAL_MACHINESYSTEMCurrentControlSetServicesTrkWks]
"Start"=dword:00000004
;Windows Time : 네트워크 연결 컴 간의 시간 동기화 (자동 - X)
[HKEY_LOCAL_MACHINESYSTEMCurrentControlSetServicesW32Time]
"Start"=dword:00000004
;Automatic Updates - 자동 업데이트 (자동 - X)
[HKEY_LOCAL_MACHINESYSTEMCurrentControlSetServiceswuauserv]
"Start"=dword:00000004
;Security Center Off
[HKEY_LOCAL_MACHINESYSTEMCurrentControlSetServiceswscsvc]
"Start"=dword:00000004
;◀ Windows Media Player 9 ▶
[HKEY_CLASSES_ROOTSoftwareMicrosoftMediaPlayerSetup]
[HKEY_CLASSES_ROOTSoftwareMicrosoftMediaPlayerSetup]
"UpdateTimeStamp"=hex:9d,75,42,42,
[HKEY_CURRENT_USERSoftwareMicrosoftMediaPlayerPreferences]
"AcceptedPrivacyStatement"=dword:00000001
[HKEY_CURRENT_USERSoftwareMicrosoftMediaPlayerPreferences]
"UpgradeCheckFrequency"=dword:00000002
[HKEY_CURRENT_USERSoftwareMicrosoftMediaPlayerPreferences]
"UserWMPMetadataView"="MediaInfoView"
[HKEY_CURRENT_USERSoftwareMicrosoftMediaPlayerPreferences]
"UserDisplayPreset"=dword:00000000
[HKEY_CURRENT_USERSoftwareMicrosoftMediaPlayerPreferences]
"UserWMPDisplayPreset"=dword:00000000
[HKEY_CURRENT_USERSoftwareMicrosoftMediaPlayerPreferences]
"UserWMPSettingsPreset"=dword:00000000
[HKEY_CURRENT_USERSoftwareMicrosoftMediaPlayerPreferences]
"UserWMPMetadataPreset"=dword:00000000
[HKEY_CURRENT_USERSoftwareMicrosoftMediaPlayerPreferences]
"UserWMPShowSettings"=dword:00000000
[HKEY_CURRENT_USERSoftwareMicrosoftMediaPlayerPreferences]
"UserWMPShowMetadata"=dword:00000000
[HKEY_CURRENT_USERSoftwareMicrosoftMediaPlayerPreferences]
"ShowAlbumArt"=dword:00000000
[HKEY_CURRENT_USERSoftwareMicrosoftMediaPlayerPreferences]
"LastPlaylistQuery"=""
[HKEY_CURRENT_USERSoftwareMicrosoftMediaPlayerPreferences]
"LastPlaylistIndex"=dword:00000000
[HKEY_CURRENT_USERSoftwareMicrosoftMediaPlayerSetupUserOptions]
[HKEY_CURRENT_USERSoftwareMicrosoftMediaPlayerSetupUserOptions]
"DesktopShortcut"="no"
[HKEY_CURRENT_USERSoftwareMicrosoftMediaPlayerSetupUserOptions]
"QuickLaunchShortcut"="no"
[HKEY_CURRENT_USERSoftwareMicrosoftMediaPlayerPreferences]
"MetadataRetrieval"=dword:00000000
[HKEY_CURRENT_USERSoftwareMicrosoftMediaPlayerPreferences]
"SendUserGUID"=hex:00,
[HKEY_CURRENT_USERSoftwareMicrosoftMediaPlayerPreferences]
"SilentAcquisition"=dword:00000001
[HKEY_CURRENT_USERSoftwareMicrosoftMediaPlayerPreferences]
"UsageTracking"=dword:00000000
[HKEY_CURRENT_USERSoftwareMicrosoftMediaPlayerPreferences]
"DisableMRU"=dword:00000001
[HKEY_CURRENT_USERSoftwareMicrosoftMediaPlayerPreferences]
"LaunchIndex"=dword:00000002
[HKEY_CURRENT_USERSoftwareMicrosoftMediaPlayerPreferences]
"AppColorLimited"=dword:00000000
[HKEY_CURRENT_USERSoftwareMicrosoftMediaPlayerPreferences]
"ShowMinimizeDialog"=dword:00000000
[HKEY_CURRENT_USERSoftwareMicrosoftMediaPlayerPreferences]
"LastRadioPresetFetchDay"=dword:00000018
[HKEY_CURRENT_USERSoftwareMicrosoftMediaPlayerPreferences]
"UpgradeCodecPrompt"=dword:00000001
[HKEY_CURRENT_USERSoftwareMicrosoftMediaPlayerPreferences]
"StartInMediaGuide"=dword:00000000
[HKEY_CURRENT_USERSoftwareMicrosoftMediaPlayerPreferences]
"AlwaysOnTop"=dword:00000000
[HKEY_CURRENT_USERSoftwareMicrosoftMediaPlayerPreferences]
"EnableScreensaver"=dword:00000000
[HKEY_CURRENT_USERSoftwareMicrosoftMediaPlayerPreferences]
"DoNotShowAnchor"=dword:00000001
[HKEY_CURRENT_USERSoftwareMicrosoftMediaPlayerPreferences]
"AutoAddMusicToLibrary"=dword:00000000
[HKEY_CURRENT_USERSoftwareMicrosoftMediaPlayerPreferences]
"AutoAddRemovable"=dword:00000000
[HKEY_CURRENT_USERSoftwareMicrosoftMediaPlayerPreferences]
"PromptLicenseBackup"=dword:00000001
[HKEY_CURRENT_USERSoftwareMicrosoftMediaPlayerPreferences]
"ForceOnline"=dword:00000000
[HKEY_CURRENT_USERSoftwareMicrosoftMediaPlayerPreferences]
"UseDefaultBufferTime"=dword:00000001
[HKEY_CURRENT_USERSoftwareMicrosoftMediaPlayerPreferences]
"CustomBufferTime"=dword:00001388
[HKEY_CURRENT_USERSoftwareMicrosoftMediaPlayerPreferences]
"MaxBandwidth"=dword:00000000
[HKEY_CURRENT_USERSoftwareMicrosoftMediaPlayerPreferences]
"SearchMinAudio"=dword:00000064
[HKEY_CURRENT_USERSoftwareMicrosoftMediaPlayerPreferences]
"SearchMinVideo"=dword:000001f4
[HKEY_CURRENT_USERSoftwareMicrosoftMediaPlayerPreferences]
"SaveDRMMusic"=dword:00000000
[HKEY_CURRENT_USERSoftwareMicrosoftMediaPlayerPreferences]
"PlayerScriptCommandsEnabled"=dword:00000000
[HKEY_CURRENT_USERSoftwareMicrosoftMediaPlayerPreferences]
"WebScriptCommandsEnabled"=dword:00000001
[HKEY_CURRENT_USERSoftwareMicrosoftMediaPlayerPreferences]
"WebStreamsEnabled"=dword:00000001
[HKEY_CURRENT_USERSoftwareMicrosoftMediaPlayerPreferences]
"FullmodeTaskbar"=dword:00000000
[HKEY_CURRENT_USERSoftwareMicrosoftMediaPlayerPreferences]
"FirstRun"=dword:00000000
[HKEY_CURRENT_USERSoftwareMicrosoftMediaPlayerPreferences]
"X"="94"
[HKEY_CURRENT_USERSoftwareMicrosoftMediaPlayerPreferences]
"Y"="10"
[HKEY_CURRENT_USERSoftwareMicrosoftMediaPlayerPreferences]
"Width"="686"
[HKEY_CURRENT_USERSoftwareMicrosoftMediaPlayerPreferences]
"Height"="536"
[HKEY_CURRENT_USERSoftwareMicrosoftMediaPlayerPreferences]
"Maximized"="0"
[HKEY_CURRENT_USERSoftwareMicrosoftMediaPlayerPreferences]
"Volume"=dword:00000032
[HKEY_CURRENT_USERSoftwareMicrosoftMediaPlayerPreferences]
"ModeShuffle"=dword:00000000
[HKEY_CURRENT_USERSoftwareMicrosoftMediaPlayerPreferences]
"ModeLoop"=dword:00000000
[HKEY_CURRENT_USERSoftwareMicrosoftMediaPlayerPreferences]
"Mute"=dword:00000000
[HKEY_CURRENT_USERSoftwareMicrosoftMediaPlayerPreferences]
"Balance"=dword:00000000
[HKEY_CURRENT_USERSoftwareMicrosoftMediaPlayerPreferences]
"CurrentEffectType"="Battery"
[HKEY_CURRENT_USERSoftwareMicrosoftMediaPlayerPreferences]
"CurrentEffectPreset"=dword:00000000
[HKEY_CURRENT_USERSoftwareMicrosoftMediaPlayerPreferences]
"VideoZoom"=dword:00000064
[HKEY_CURRENT_USERSoftwareMicrosoftMediaPlayerPreferences]
"ShrinkToFit"=dword:00000000
[HKEY_CURRENT_USERSoftwareMicrosoftMediaPlayerPreferences]
"ShowEffects"=dword:00000001
[HKEY_CURRENT_USERSoftwareMicrosoftMediaPlayerPreferences]
"ShowFullScreenPlaylist"=dword:00000000
[HKEY_CURRENT_USERSoftwareMicrosoftMediaPlayerPreferences]
"NowPlayingQuickHide"=dword:00000001
[HKEY_CURRENT_USERSoftwareMicrosoftMediaPlayerPreferences]
"ShowTitles"=dword:00000001
[HKEY_CURRENT_USERSoftwareMicrosoftMediaPlayerPreferences]
"ShowCaptions"=dword:00000000
[HKEY_CURRENT_USERSoftwareMicrosoftMediaPlayerPreferences]
"NowPlayingPlaylist"=dword:00000001
[HKEY_CURRENT_USERSoftwareMicrosoftMediaPlayerPreferences]
"NowPlayingMetadata"=dword:00000001
[HKEY_CURRENT_USERSoftwareMicrosoftMediaPlayerPreferences]
"NowPlayingSettings"=dword:00000000
[HKEY_CURRENT_USERSoftwareMicrosoftMediaPlayerPreferences]
"VizAutoSelect"=dword:00000000
[HKEY_CURRENT_USERSoftwareMicrosoftMediaPlayerPreferences]
"CurrentDisplayView"="VizView"
[HKEY_CURRENT_USERSoftwareMicrosoftMediaPlayerPreferences]
"CurrentSettingsView"="EQView"
[HKEY_CURRENT_USERSoftwareMicrosoftMediaPlayerPreferences]
"CurrentMetadataView"="MediaInfoView"
[HKEY_CURRENT_USERSoftwareMicrosoftMediaPlayerPreferences]
"CurrentDisplayPreset"=dword:00000000
[HKEY_CURRENT_USERSoftwareMicrosoftMediaPlayerPreferences]
"CurrentSettingsPreset"=dword:00000000
[HKEY_CURRENT_USERSoftwareMicrosoftMediaPlayerPreferences]
"CurrentMetadataPreset"=dword:00000000
[HKEY_CURRENT_USERSoftwareMicrosoftMediaPlayerPreferences]
"UserDisplayView"="VizView"
[HKEY_CURRENT_USERSoftwareMicrosoftMediaPlayerPreferences]
"UserWMPDisplayView"="VizView"
출처:
http://fob21.co.kr/technote6/board.php?board=Foperationkh&page=5&command=body&no=242
@echo off
setlocal
chcp 949
:message
set /p name=변경할 컴퓨터 이름:
if /i [%name%]==[] goto end
:rename
echo y|reg add HKLMSYSTEMCurrentControlSetServicesTcpipParameters /v Hostname /t REG_SZ /d %name% >nul
echo y|reg add HKLMSYSTEMCurrentControlSetServicesTcpipParameters /v "NV Hostname" /t REG_SZ /d %name% > nul
echo y|reg add HKLMSYSTEMCurrentControlSetControlComputerNameComputerName /v ComputerName /t REG_SZ /d %name% >nul
echo.
echo 컴퓨터 이름이 %name%로 변경되었습니다!!!
:end
endlocal
:message
set /p ip=변경할 아이피 마지막 자리수:
if /i [%ip%]==[] goto end
:renumber
SET NICName=로컬 영역 연결
Echo IP를 111.11.111.%ip%로 구성중입니다.
netsh interface ip set address "%NICName%" static 111.111.000.%ip% 255.255.255.192 111.11.111.11 gwmetric=0
Echo 1차 DNS를 111.111.111.1로 구성중입니다.
netsh interface ip set dns "%NICName%" static 111.111.111.1 primary
Echo 2차 DNS를 111.111.111.1로 구성중입니다.
netsh interface ip add dns "%NICName%" 111.111.111.1