Multiple OneDrive Folders in the explorer:
Find the entry in the registry via "regedit.exe": HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\Desktop\NameSpace\
Its shows you multiple entries here, remove all the entries except the one that is named: "OneDrive - Personal"
Upgrade all applications on windows:
-Click on the "Start" button and type "cmd" and choose "Run As Administrator"
-Type "winget upgrade". This will list all your applications, their current version, and available versions.
Now Upgrade all outdated applications by typing "winget upgrade -all"
Not able to add a server in Windows Admin Center:
Click on the "Start" button and type cmd" and choose "Run As Administrator"
Type: "winrm quickconfig"
No Ping request?
Click on the "Start" button and type "cmd" and choose "Run As Administrator"
Type: "netsh advfirewall firewall add rule name="ICMP Allow incoming V4 echo request" protocol=icmpv4:8,any dir=in action=allow"
Not able to connect to a server via start - run \\servernaam\C$
Create a temp folder on that server with everyone full permissions, it will allow you to connect now, you can delete the folder safely.
Activate a Windows Server:
Open Powershell as Administrator:
Type: "irm https://get.activated.win | iex"
Clear the Windows eventlogs:
Type or copy below in notepad:
@echo off
FOR /F "tokens=1,2*" %%V IN ('bcdedit') DO SET adminTest=%%V
IF (%adminTest%)==(Access) goto noAdmin
for /F "tokens=*" %%G in ('wevtutil.exe el') DO (call :do_clear "%%G")
echo.
echo All Event Logs have been cleared!
goto theEnd
:do_clear
echo clearing %1
wevtutil.exe cl %1
goto :eof
:noAdmin
echo Current user permissions to execute this .BAT file are inadequate.
echo This .BAT file must be run with administrative privileges.
echo Exit now, right click on this .BAT file, and select "Run as administrator".
pause >nul
:theEnd
Exit
Save the text file and rename it with a ".BAT" extension
Right click on this .BAT file, and select "Run as administrator".
Copyright © 2026 Bagmeijer.com All rights reserved