Windows(9)
-
WSUS Port Change
No need to uninstall anything at all.... Just follow below steps : Environment : Windows Server 2008 R2 with WSUS 3.0 SP2 1) Go to Start -> RUN -> inetmgr 2) Go to "WSUS Administration" Site 3) Under "Edit Site", click on "Bindings" 3) Change the ports which you required(for e.g. 80), and click OK 4) Open Registry Editor with Start -> RUN -> regedit 5) Goto HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\..
2016.04.20 -
Nesting Hyper-V with VMware Workstation 8 and ESXi 5
http://www.veeam.com/blog/nesting-hyper-v-with-vmware-workstation-8-and-esxi-5.html
2015.10.22 -
Open Virtual Disk Image File - PowerISO
http://www.poweriso.com/tutorials/open-virtual-disk-image-file.htm A virtual disk image file is a sector-by-sector copy of a physical disk, which includes complete contents and data structure of a hard disk. It is mainly used by Virtual Machine software. PowerISO supports the following virtual disk image formats, VMWare Virtual Disk Image File (*.vmdk) Virtual PC Virtual Disk Image File (*.vhd) ..
2015.08.17 -
Starting Outlook and having an email pre-populated from command line
http://stackoverflow.com/questions/248569/starting-outlook-and-having-an-email-pre-populated-from-command-line Set olApp = CreateObject("Outlook.Application") Set olMsg = olApp.CreateItem(0) With olMsg .To = "test@testing.com" '.CC = "cc@testing.com" '.BCC = "bcc@testing.com" .Subject = "Subject" .Body = "Body" .Attachments.Add "C:\path\to\attachment\test.txt" .Display .Send End With https://www..
2015.08.10 -
The Mystery of the Missing Process Performance Counter in Perfmon
http://blogs.technet.com/b/mscom/archive/2008/12/18/the-mystery-of-the-missing-process-performance-counter-in-perfmon.aspx Reg add HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\PerfProc\Performance /v "Disable Performance Counters" /t REG_DWORD /d 0
2015.06.25 -
WSUS failures - Duplicate SUSClientIDs
WSUS 클라이언트 등록시 중복현상 발생시 해결방법 https://social.technet.microsoft.com/Forums/windowsserver/en-US/45a754ae-21b0-4dd0-a6c0-363fdd45d4b6/wsus-failures-duplicate-susclientids net stop wuauserv REG DELETE "HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\WindowsUpdate" /v AccountDomainSid /f REG DELETE "HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\WindowsUpdate" /v PingID /f REG DELETE "HKLM\SOFTWARE\Mic..
2015.05.21