Welcome to My Blog

IT related tech tips since 2006

Login

Blog History

List local disks

GET-CimInstance -query "SELECT * from Win32_DiskDrive" DeviceID Caption Partitions Size Model -------- ------- ---------- ---- ----- \\.\PHYSICALDRIVE0 WDC WD60EZAZ-00ZGHB0 0 6001172513280 WDC WD60EZAZ-00ZGHB0 \\.\PHYSICALDRIVE2 Seagate One Touch w/PW SCSI Disk Device...

Create ISO using Powershell

Usage New-IsoFile -NewIsoFilePath C:\tmp\Hyper-V.iso-sources -ImageName Hyper-V -SourceFilePath 'C:\tmp\Hyper-V' New-IsoFile -NewIsoFilePath C:\tmp\W2K3SP2CD1.iso -ImageName W2K3SP2CD1 -SourceFilePath 'C:\tmp\Windows 2003 Server R2 Std Edition SP2 CD1' New-IsoFile...

Event 1008

TGN-HV02 1008 Warning Microsoft-Windows-Perflib Application 9/06/2024 5:30:28 PMThe Open procedure for service "BITS" in DLL "C:\Windows\System32\bitsperf.dll" failed with error code The system cannot find the file specified.. Performance data for this service will...

How to Delete a Hyper-V VM and ITS Hard Drives

If its a replica Remove Replication Get the paths to the Hard Drives Get-VM TGN-RWD-BK01 |Select-Object -ExpandProperty HardDrives Make a note of the location of the hard drives from the output VMName ControllerType ControllerNumber ControllerLocation DiskNumber Path...

Side by side php8.3-FPM

CakePHP 5 uses zend.assertions = 1 for development so if you have production and test environments on your server you need separate instance of php-fpm so you can run one with zend.assertions = 1 for development and the other zend.assertions = -1 for production The...