Actually looks like I got this part fixed. It seems when you copy a script over from another computer, i.e. the zip file, LocalMachine sets the content to BLOCK so I went into all the PS files properties I was importing and changed them to UNBLOCK. Seems to have ran no problem. Now I'm getting nothing but errors on the next script ,4_CreateVirtualMachines.ps1, that is supposed to create the VHD files. ***** Import-Module 'C:\Program Files\modules\HyperV\HyperV.psd1' #New-VMInternalSwitch "Internal" $VM = "HYDRATION-DC01" New-VM -Name $VM Set-VMMemory -VM $VM 512MB md C:\VMs\"$VM" New-VHD -Size 300GB -Path C:\VMs\"$VM"\disk1.vhd Add-VMDisk -VM $VM -ControllerID 0 -LUN 0 -Path C:\VMs\"$VM"\disk1.vhd Add-VMDisk -VM $VM -ControllerID 1 -LUN 0 -Path C:\HydrationServers\HydrationServers.iso -DVD Add-VMNic -VM $VM -Virtualswitch Internal -MAC 00155D000001 $VM = "HYDRATION-DC02" New-VM -Name $VM Set-VMMemory -VM $VM 512MB md C:\VMs\"$VM" New-VHD -Size 300GB -Path C:\VMs\"$VM"\disk1.vhd Add-VMDisk -VM $VM -ControllerID 0 -LUN 0 -Path C:\VMs\"$VM"\disk1.vhd Add-VMDisk -VM $VM -ControllerID 1 -LUN 0 -Path C:\HydrationServers\HydrationServers.iso -DVD Add-VMNic -VM $VM -Virtualswitch Internal -MAC 00155D000002 $VM = "HYDRATION-MDT01" New-VM -Name $VM Set-VMMemory -VM $VM 1024MB md C:\VMs\"$VM" New-VHD -Size 300GB -Path C:\VMs\"$VM"\disk1.vhd Add-VMDisk -VM $VM -ControllerID 0 -LUN 0 -Path C:\VMs\"$VM"\disk1.vhd Add-VMDisk -VM $VM -ControllerID 1 -LUN 0 -Path C:\HydrationServers\HydrationServers.iso -DVD Add-VMNic -VM $VM -Virtualswitch Internal -MAC 00155D000003 $VM = "HYDRATION-CM01" New-VM -Name $VM Set-VMMemory -VM $VM 1536MB md C:\VMs\"$VM" New-VHD -Size 300GB -Path C:\VMs\"$VM"\disk1.vhd Add-VMDisk -VM $VM -ControllerID 0 -LUN 0 -Path C:\VMs\"$VM"\disk1.vhd Add-VMDisk -VM $VM -ControllerID 1 -LUN 0 -Path C:\HydrationServers\HydrationServers.iso -DVD Add-VMNic -VM $VM -Virtualswitch Internal -MAC 00155D000004 ***** For now I will go back and recreate all the steps to see if I missed anything. Consider this item closed. Thanks for the help, RD