PS D:\PowerShell> Get-WmiObject -Class win32_operatingsystem | format-list caption,csdversion,CreationClassName

caption           : Microsoft Windows XP Home Edition
csdversion        : Service Pack 2
CreationClassName : Win32_OperatingSystem

More information is available here

MOVE FILES

Move-Item *.jpg -Destination ‘C:\London\PrintScreen Files’

RENAME FILES

$Pic=”Pics”

dir *.jpg |  %{rename-item -path $_.fullname -newname ($Pic+$_.name)}

>Get-WmiObject win32_computersystem -computer win2k32007 -credential vcadmin | ft model,totalphysicalmemory -AutoSize

model                   totalphysicalmemory
—–                   ——————-
VMware Virtual Platform           402,075,648

__________________________________________________________________________
> Get-WmiObject win32_computersystem | ft model,totalphysicalmemory -AutoSize

model                            totalphysicalmemory
—–                            ——————-
Inspiron 6000                             106,469,3760

PS D:\PowerShell> Get-WmiObject win32_operatingsystem -computer win2k32007 -Credential vcadmin | select caption,csdversion

caption                                                             csdversion
——-                                                             ———-
Microsoft(R) Windows(R) Server 2003, Enterprise Edition             Service Pack 2

http://support.microsoft.com/kb/307973

The Kernel Memory Dump option records only kernel memory. This option stores more information than a small memory dump file, but it takes less time to complete than a complete memory dump file. The file is stored in theDump Filebox (%SystemRoot%\Memory.dmp by default), and any previous kernel or complete memory dump files are overwritten if the Overwrite any existing file check box is selected. If you set this option, you must have a sufficiently large paging file on the boot volume. The required size depends on the amount of RAM in your computer (although the maximum amount of space that must be available for a kernel memory dump on a 32-bit system is 2 GB plus 16 MB; on a 64-bit system, the maximum amount of space that must be available for a kernel memory dump is the size of the RAM plus 128 MB). The following table contains guidelines for the size of the paging file:

RAM size Paging file should be no smaller than
256 MB–1,373 MB 1.5 times the RAM size
1,374 MB or greater 32-bit system: 2 GB plus 16 MB
64-bit system: size of the RAM plus 128 MB

http://support.microsoft.com/kb/168801/en-us

   Control panel tool             Command
   -----------------------------------------------------------------
   Accessibility Options          control access.cpl
   Add New Hardware               control sysdm.cpl add new hardware
   Add/Remove Programs            control appwiz.cpl
   Date/Time Properties           control timedate.cpl
   Display Properties             control desk.cpl
   FindFast                       control findfast.cpl
   Fonts Folder                   control fonts
   Internet Properties            control inetcpl.cpl
   Joystick Properties            control joy.cpl
   Keyboard Properties            control main.cpl keyboard
   Microsoft Exchange             control mlcfg32.cpl
      (or Windows Messaging)
   Microsoft Mail Post Office     control wgpocpl.cpl
   Modem Properties               control modem.cpl
   Mouse Properties               control main.cpl
   Multimedia Properties          control mmsys.cpl
   Network Properties             control netcpl.cpl
                                  NOTE: In Windows NT 4.0, Network
                                  properties is Ncpa.cpl, not Netcpl.cpl
   Password Properties            control password.cpl
   PC Card                        control main.cpl pc card (PCMCIA)
   Power Management (Windows 95)  control main.cpl power
   Power Management (Windows 98)  control powercfg.cpl
   Printers Folder                control printers
   Regional Settings              control intl.cpl
   Scanners and Cameras           control sticpl.cpl
   Sound Properties               control mmsys.cpl sounds
   System Properties              control sysdm.cpl

Refer http://support.microsoft.com/kb/192806

How to Use the NETSH Command to Change from Static IP Address to DHCP in Windows 2000?

http://support.microsoft.com/kb/257748

How to manually rebuild Performance Counter Library values

http://support.microsoft.com/default.aspx?scid=kb;EN-US;300956

How to configure MSDTC in a Windows 2000 cluster environment

http://support.microsoft.com/kb/290624

How to configure Microsoft Distributed Transaction Coordinator on a Windows Server 2003 cluster

http://support.microsoft.com/kb/301600

How to troubleshoot the Cluster service account when it modifies computer objects

http://support.microsoft.com/?kbid=307532

Description of the properties of the cluster Network Name resource in Windows Server 2003

http://support.microsoft.com/?kbid=302389

How to Create a Server Cluster File Share with Cluster.exe

http://support.microsoft.com/kb/284838/en-us

« Previous PageNext Page »