I go through phases on my Windows Vista machine where I am OK with using UAC and other times where I just want it to go away for a while. I compare it to staring at a computer screen for hours. It is nice to take a break and get a hot cup of coffee or grab a Tall mocha from Starbucks.The command-line entries to enable and disable are the following:Enable UAC: C:\Windows\System32\cmd.exe /k %wind..
Enable Remote Registry from Command Line This is how I enable the Remote Registry on local system or remote system from the command line in Windows 7 and/or Windows XP. sc start RemoteRegistry To enable it to start automatically (default manual startup) sc config RemoteRegistry start= auto Note: There is a space required between start= and auto. To do this on a remote system, use the following s..
A shorter command to completely disable the firewall could have been: netsh firewall set opmode disable As Zaubi points out you should avoid using this command because it eliminates the firewall as a security measure completely, which is a bad thing. Temporarily disabling the firewall might be useful to troubleshoot network connectivity. The command to enable the firewall again is: netsh firewal..
Many will be familiar with the graphical interface tool regedit.exe that is available for editing the Windows Registry. Less familiar, however, is the command-line utility reg.exe that also comes with Windows. This accessory will do anything thatregedit.exe can do and has the additional facility of being directly usable in scripts. It is a common tool for system administrators with many computer..
윈도우 레지스트리 변경팁Windows 2007/02/08 19:09 유럽문자 제대로 보이게 하기 윈도우에서 유럽 문자(엑센트가 든 알파벳)를 제대로 보이게 하는 방법입니다레지편집기를 실행해서 아래 주소를 찾아갑니다. HKEY_LOCAL_MACHINE/System/CurrentControlSet/Control/fontassoc/AssociatedCharSet 우측창에서 ansi를 더블클릭하여 값을 no로 바꾼 다음 재부팅하면 됩니다. 우측버튼에 디스크 조각모음 메뉴 넣기 간단히 탐색기에서 드라이브 아이콘을 우측버튼으로 클릭하면 메뉴에 "디스크 조각모음" 메뉴가 나타나도록 만들어 보겠습니다.다음 레지스트리 키를 찾아갑니다. HKEY_CLASSES_ROOT/Drive/shell Shell키의 아래에 Defra..
보호되어 있는 글입니다.
strComputer = "." Set objWMIService = GetObject("winmgmts:" _ & "{impersonationLevel=impersonate}!\\" & strComputer & "\root\cimv2") Set colItems = objWMIService.ExecQuery("Select * from Win32_PnPEntity") For Each objItem in colItems Wscript.Echo "Class GUID: " & objItem.ClassGuid Wscript.Echo "Description: " & objItem.Description Wscript.Echo "Device ID: " & objItem.DeviceID Wscript.Echo "Manuf..