I know this is a simple thing, but its one thats easy to forget, anf you can find yourself in…
Powershell script to delete a folder or directory if it exists: $strFolderName=”c:\temp\” If (Test-Path $strFolderName){ Remove-Item $strFolderName } See Also:…
Powershell script to check if a file exists $strFileName=”c:\filename.txt” If (Test-Path $strFileName){ # // File exists }Else{ # // File…
After uninstalling Novell ZENworks agent from my Windows Server 2008R2 machine, a “ZENworks Adaptive Agent” icon was leftover on the desktop,…
You can use this procedure to add the Log on as a service right to an account on your computer.…
There are a number of reasons why you may need to find and remove inactive computers from active directory. Test…
This is a case study of a project I worked on for Landcom. As the New South Wales Government’s property…
In exchange 2010 SP1, users are not receiveing quota warning messages when they are beyond the Issue Warning threshold. Microsoft…
Run the following powershell script to grant a user or group full access to a mailbox. Add-MailboxPermission -Identity ” -User…
DBCC CHECKIDENT can reseed (reset) the identity value of the table. For example, YourTable has 25 rows with 25 as…