Hi, if the remote desktop client return an “internal error” window check if the tls/ssl connection to the RDP port is working correctly: For example from a linux machine or from a wsl(windows subsystem for linux) session: If there is no certificate shown. Check system eventlog for errors with ID...
Hi, after an Upgrade from Windows 10 to Windows 11 on a customer PC sysprep is no longer working. Unfortunataly the error messages in C:\Windows\System32\sysprep\Panther\setuperr.log does not really help to find the root cause: Error pGetUninstallInterfaceCommon: Failed loading the setupplatform,...
Hi, event tracing files, for example produced by wusa.exe log parameter, are binary files. The powershell command let Get-WinEvent couldn’t open it but Windows Eventviewer is able to read those files. There is also an option to convert ETL files. The command line utility tracerpt.exe could convert...
Hi, outstanding file movements can be shown with Sysinternals pendmoves.exe or via the registry key PS D:\> Get-ItemProperty -Path "HKLM:\SYSTEM\CurrentControlSet\Control\Session Manager" -Name PendingFileRenameOperations Michael
Hi, if you were faced with this error when you try to change the timezone on a Windows Server 2022/2025… .. change the timezone by the following methods: open the control panel from a elevated cmd.exe D:\> control.exe timedate.cpl or change the timezone from the server manager Michael
Hi, to enter a Powershell 7 shell over WinRM setup the machines as followed: On the target machine install Powershell 7 and select enable powershell remoting during the setup. On the client machine set enter session PS D:\> $PSSessionConfigurationName = 'PowerShell.7' PS D:\> enter-pssession...