Archive for the ‘Windows’ Category
Posted by jpluimers on 2024/11/04
For my link archive: [Wayback/Archive] How to check if your device meets Windows 11 system requirements after changing device hardware
Press Windows logo key + S or select Search, type pc health check, and select PC Health Check from the list of results.
The trick os to install and run the above tool:
Read the rest of this entry »
Posted in Power User, Windows, Windows 10, Windows 11 | Leave a Comment »
Posted by jpluimers on 2024/10/18
For my link archive, as apparently the history recording for the Windows (not just server) Task Scheduler is disabled [Wayback How can I enable the Windows Server Task Scheduler History recording? – Stack Overflow
- Open an elevated Task Scheduler (ie. right-click on the Task Scheduler icon and choose Run as administrator)
- In the Actions pane (right pane, not the actions tab), click Enable All Tasks History
That’s it. Not sure why this isn’t on by default, but it isn’t.
At the time of writing, I did not have energy to figure out which steps on the console to take to enable this history.
Read the rest of this entry »
Posted in Power User, Windows, Windows 10, Windows 11, Windows 7, Windows 8, Windows 8.1 | Leave a Comment »
Posted by jpluimers on 2024/10/16
Posted in Conference Topics, Conferences, Development, Event, Power User, Security, Software Development, Windows, Windows 10, Windows 11, Windows 7, Windows 8, Windows 8.1, Windows Development | Leave a Comment »
Posted by jpluimers on 2024/10/14
A long time ago I wrote about How To Fix Missing Hibernation Option On Windows 10.
Back then I needed to enable it (using powercfg.exe /hibernate on or disable using powercfg.exe /hibernate off), but I forgot about how to query this setting.
[Wayback/Archive] windows check if hibernation is enabled – Google Search gives me a result which is somewhat workable, but hopefully some day I find a better solution than in [Wayback/Archive] How to see from commandline (!!!) if hibernation is on or off? – Windows 10 Forums:
Read the rest of this entry »
Posted in Power User, Windows, Windows 10, Windows 11 | Leave a Comment »
Posted by jpluimers on 2024/10/09
Note that the below methods likely will cause security warnings if a Windows machine has been properly configured, but in most cases at least one of them works.
- using cURL (Widows 10 and up)
curl --url https://speed.hetzner.de/100MB.bin --output %TEMP%\100MB.bin
- using [Wayback/Archive]
certutil | Microsoft Docs (at least Windows 7 and up; needs UAC elevation)
certutil.exe -urlcache -split -f https://speed.hetzner.de/100MB.bin %TEMP%\100MB.bin
- using PowerShell (at least Windows Vista and up)
powershell.exe -Command (New-Object System.Net.WebClient).DownloadFile('https://speed.hetzner.de/100MB.bin','%TEMP%\100MB.bin')
I think it works for all versions of curl, certutil, and PowerShell though I did not have anything older than up-to-date Windows 7 (having PowerShell version 3) and recent to test on.
Read the rest of this entry »
Posted in *nix, *nix-tools, .NET, Batch-Files, CommandLine, cURL, Development, Power User, PowerShell, PowerShell, Scripting, Software Development, Windows, Windows 10, Windows 11, Windows 7, Windows 8, Windows 8.1, Windows Development, Windows Vista | Leave a Comment »
Posted by jpluimers on 2024/10/04
A while ago I learned that since Windows 8, sometimes it uses LaunchTM.exe (which is not even on Wikipedia) to start TaskMgr.exe.
I could find little information about the why, so here are some links with information on when LaunchTM.exe is used (which is confusing) and what command-line parameters TaskMgr.exe can get (also confusing as the order of parameters matter):
Read the rest of this entry »
Posted in Power User, Windows, Windows 10, Windows 11, Windows 7, Windows 8, Windows 8.1 | Leave a Comment »
Posted by jpluimers on 2024/10/02
I forgot what triggered me querying for [Wayback/Archive] can windows user names contain spaces – Google Search.
Boy I was surprised that the answer is yes.
Following that I was totally not surprised that:
Read the rest of this entry »
Posted in Power User, Windows, Windows 10, Windows 11, Windows 7, Windows 8, Windows 8.1 | Leave a Comment »
Posted by jpluimers on 2024/09/30
Based on [Wayback/Archive] Windows 10/11: Skip Security Questions When Adding Local User, [Wayback/Archive] Remove Security Questions when setting up Local Account in Windows and others:
- if during initial Windows 10/11 setup you add a user with a password, then it will ask you for 3 security questions
- if you do not want these 3 security questions:
- leave the password blank when adding the user
- after first logon, press Ctrl-Alt-Del and change the password from blank to an actual password
Via [Wayback/Archive] windows 10 skip security questions – Google Search.
–jeroen
Posted in Authentication, Power User, Security, Windows, Windows 10, Windows 11 | Leave a Comment »