User Tools

Site Tools


software:microsoft:windows:windows10

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revisionPrevious revision
Next revision
Previous revision
software:microsoft:windows:windows10 [2023/06/26 15:11] superwizardsoftware:microsoft:windows:windows10 [2024/03/22 22:37] (current) – [PsExec: Logon failure: the user has not been granted the requested logon type at this computer.] superwizard
Line 2: Line 2:
  
 ------------------------------------------------------------------------------------------------------------------------------------------------\\ ------------------------------------------------------------------------------------------------------------------------------------------------\\
 +
 +====== PsExec: Logon failure: the user has not been granted the requested logon type at this computer. ======
 +
 +
 +    "F:\1. Utilities\SysInternals\PSTools\psexec64.exe" ^
 +     \\computer -i -u domain\username -p passwordforuser  ^
 +     /accepteula -h cmd /c "c:\Users\Public\Downloads\backup.cmd"
 +    
 +
 +The solution for 2.30+ is to add the -i flag for interactive session.
 +
 +    
 +https://learn.microsoft.com/en-us/answers/questions/233240/psexec-logon-failure-the-user-has-not-been-granted
 +
 +
 +When logging in as Admin you also need the -h flag if you want full admin privileges.
 +
 +So from my previous example: 
 +
 +
 +https://learn.microsoft.com/en-us/answers/questions/280976/(psexec)-logon-failure-the-user-has-not-been-grant
 ====== Steps to create Hibernate shortcut in Windows 10: ====== ====== Steps to create Hibernate shortcut in Windows 10: ======
  
Line 479: Line 500:
 Applies to: Windows 8.1Windows 8.1 EnterpriseWindows 8.1 Pro More Applies to: Windows 8.1Windows 8.1 EnterpriseWindows 8.1 Pro More
 </code> </code>
 +
 +<WRAP center round box >
 +2024-02-02
 +
 +The /checkhealth command simply checks the running image (that’s what /online tells it to do) to see if it can detect any damage or corruption. Because it’s only checking file hashes and signatures, this command completes in under one minute on most machines. The good thing about /checkhealth is that it not only tells you if it finds damage but if that damage is repairable or non-repairable. If it’s repairable, you can proceed to the /restorehealth option (covered in the following paragraphs); if it’s non-repairable, jump to Step 2.
 +If DISM reports that component store corruption is found and is repairable, you should attempt repairs. That syntax reads:
 +    dism /online /cleanup-image /restorehealth
 +Even if errors were detected in the preceding step, this command should complete successfully. It replaces corrupt or questionable elements in the Windows Side-by-Side (WinSxS) store, reading from a local copy of your Windows image files.
 +The /restorehealth command can be tricky to use. Because it can actually repair a Windows image, it needs a source from which to attempt such repairs. You can omit the /source option, but if you do, the command will try to grab its files from Windows Update over the internet. This may or may not work, depending on firewall settings on your network.
 +
 +From <https://www.computerworld.com/article/3080839/repair-windows-10-and-11-step-by-step-guide.html> 
 +
 +</WRAP>
  
 ====== FIX DISM Source Files Could not be Found Windows 10/8 ====== ====== FIX DISM Source Files Could not be Found Windows 10/8 ======
software/microsoft/windows/windows10.1687792302.txt.gz · Last modified: 2023/06/26 15:11 by superwizard