Posted On March 31, 2019

Windows: Disable Low Disk Space Warning

kimconnect 0 comments
blog.KimConnect.com >> Windows >> Windows: Disable Low Disk Space Warning
To disable these balloon messages follow the steps below:
1. Open the Registry Editor by clicking on Start -> Run and running REGEDIT.
2. Navigate to the following location: HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Policies\Explorer
3. Right-click in the blank area of the right-hand pane of the Registry Editor and create a new DWORD Value by selecting New -> DWORD Value.
4. Name this new DWORD Value NoLowDiscSpaceChecks
5. Double-click on the new DWORD value and assign it a value of 1.
6. Close the Registry Editor and restart the computer.

Leave a Reply

Your email address will not be published. Required fields are marked *

Related Post

Domino Applications Migration

Our current production software is becoming outdated, whereby it lacks performance, intuitive user interface, integration…

Using SysPrep To Move Windows Users Directory

Assumptions: Windows 2019 Server Standard ISO is mounted as E:\ D:\Users will be the new…

PowerShell: Uninstall Program Using Its Name

# uninstallProgramUsingId.ps1 $appName='Virtual Machine Manager Agent' $uninstallStringRegPaths='HKLM:\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall','HKLM:\SOFTWARE\Wow6432Node\Microsoft\Windows\CurrentVersion\Uninstall' $uninstallStrings=Get-ChildItem -Path $uninstallStringRegPaths $uninstallString=($uninstallStrings|Get-ItemProperty|Where-Object {$_.DisplayName -match $appName}).UninstallString if($uninstallString.count…