Month: July 2017

  • Rounding Numbers in PowerShell

    Rounding Numbers in PowerShell

    Rounding Numbers in PowerShell $Number = 13.5 Cropping: [math]::Truncate($Number) 13 Rounding Down: [math]::Floor($Number) 13 Rounding Up: [math]::ceiling($Number) 14 Standard 0-4 Round Down 5-9 Round Up: [math]::Round($Number) 14

  • How to make a Virtual Box Virtual Disk Read Only

    Make it read Only (Immutable) VBoxManage modifymedium disk ‘C:\Users\user\VirtualBox VMs\X\X.vdi’ –type immutable Make it Writable VBoxManage modifymedium disk ‘C:\Users\user\VirtualBox VMs\X\X.vdi’ –type normal Troubleshooting: You may need to detatch this disk first.