I came across a tool long back to maintain some of our useful information in a simple and most efficient tool which is very easy to handle and it is portable. http://pkb.sourceforge.net/ The best part is it can be used on any platform. Cool tool. Thanks ALEX for the wonderful tool and giving it as…
EMC has got a nice tool to find the WWN numbers of the HBA for windows servers. Download the INQ tool from emc site ftp://ftp.emc.com/pub/symm3000/inquiry/ Select the higher version folder.<as of now v7.5.0.0/ Then select the download according to your windows version (32 bit or 64 bit) inq.windowsamd64 – 64 bit inq.winia – 32 bit…
Cool script to backup and restore NTFS permission. Example You need to backup NTFS permission of a folder in c:\Test and restore the same permission to another folder in D:\TestRST. Follow the steps below. Create a batch file in the name NTFSBKP using the lines below. ———————————– @echo off If {%3}=={} @echo Syntax: NTFSBKP…
I came across as a simple and very nice batch script from Technet site. It is really great. It gives a clean output. @echo off set fnm=C:\Scripts\computers.txt set lnm=C:\Scripts\pingresult.txt if exist %fnm% goto Label1 echo. echo Cannot find %fnm% echo. Pause goto :eof :Label1 echo PingTest STARTED on %date% at %time% > %lnm% echo =================================================…
This script is very useful to check the installed patches on a machine. wmic /node:'<computer Name>’ qfe GET description,FixComments,hotfixid,installedby,installedon,servicepackineffect > Patches.txt Repalce the <computer Name> with your server name.