Using Windows Server as a Network Router for communication across two Subnets

In this post we are going to look at setting up RRAS on a Windows Server's in VMware, to allow communication between two subnets for RDP Remote Desktop Connections. First we need to setup the RRAS Virtual Machine in VMWare. It's going to need two virtual network interface cards, one connecting to my Workplace LAN's … Continue reading Using Windows Server as a Network Router for communication across two Subnets

Restoring a Mailbox or specific Mailbox data in Exchange

In this post we are going to look at restoring mailbox data in Exchange using PowerShell. Using your backup software - load the tape or disk backups containing your Exchange databases around the proposed date. Then restore the database to a convenient location with enough disk space. After that copy over the Database and the … Continue reading Restoring a Mailbox or specific Mailbox data in Exchange

Delete Local User Profiles Remotely using a PowerShell Script (DelProf2.exe)

In this post we are going to look at utilizing a tool called DelProf and a small PowerShell script to delete user profiles on workstations remotely. First we need to download the tool, it's just one executable file that can be found here The reason for using DelProf2.exe over the syntax's Remove-Item or leveraging WMI … Continue reading Delete Local User Profiles Remotely using a PowerShell Script (DelProf2.exe)

Restore AD Objects and Users using PowerShell

In this post we are going to look at the different ways you can restore Active Directory objects, such as User Accounts, Groups, Computers and OUs using Restore-ADObject in PowerShell. View Deleted Objects: Firstly this command will show you a list of all deleted objects: Get-ADObject -Filter 'isDeleted -eq $True -and name -ne "Deleted Objects"' … Continue reading Restore AD Objects and Users using PowerShell

Remove and automatically Re-add Computers from the Domain using PowerShell scripts

In this post we're going to look at removing and then automatically re-adding a workstation from the domain using PowerShell scripts and a batch file. **Bare in mind - the script may not be the best first step for troubleshooting a computer falling off the domain or a trust issue. 'test-computersecurechannel -repair' would be a … Continue reading Remove and automatically Re-add Computers from the Domain using PowerShell scripts

Add Network Driver to a Boot Image – boot.wim

In this post I am going to take you through the process of adding network drivers into a boot image, mainly for the purpose of PXE booting machines. This will involve using 'Deployment Image Servicing and Management' (DISM.exe) to import the machine specific network drivers (.inf files) into the boot image. Firstly - To get … Continue reading Add Network Driver to a Boot Image – boot.wim