Recent content by SomeTechGuy

  1. S

    Can't enable Network Discovery & File Sharing

    I do the same and tell (pipe) it to hide the changes: # (Out-Null hides the number of rules changed) Write-Host "Allow Network Discovery and Allow File and Printer Sharing" `n netsh advfirewall firewall set rule group=”network discovery” new enable=yes | Out-Null netsh advfirewall firewall set...
  2. S

    Office365 Package and Silent Install

    Nice setup if you are in a business. If you have 365 home, you can't customize the install, but I found to way to automate the download and run the install via powershell: Write-Output "Installing Microsoft 365..." $progressPreference = 'silentlyContinue' $Destination =...
  3. S

    Post-Setup does not work, due to elevated rights

    Elevation depends on user acct:. "%WINDIR%\Setup\Scripts\SetupComplete.cmd: This script runs immediately after the user sees the desktop. This setting is disabled when using OEM product keys. It runs with local system permission. " Souce...
  4. S

    Post-Setup does not work, due to elevated rights

    I am curious about your command line for running the script in elevated status? Please share
  5. S

    How can I disable "Store recently opened programs" using NTLite?

    This is the way I do it: If the option is not in NTLite, then you can find the registry key to add or modify. Create a registry file on your desktop. (Ex: Test.reg) Add this to it: Windows Registry Editor Version 5.00 ; Turn off "Store and display recently opened programs in the Start menu"...
  6. S

    Win10 1903 Local search broken after removing components

    I can confirm that the KB update pulls from your server and that everything works properly. Thank you again for your time.
  7. S

    UAC Account Settings Help

    This since been fixed....The issue was the pc name and user name were the same. You cannot do this when doing an unattend.
  8. S

    Win10 1903 Local search broken after removing components

    Awesome! I'll try it out tonight
  9. S

    Win10 1903 Local search broken after removing components

    Here is my preset - Thank you for your help
  10. S

    Win10 1903 Local search broken after removing components

    Looks like this issue is back with the beta: v1.9.0.7115 - Can you please take a look?
  11. S

    UAC Account Settings Help

    SO looks like the issue is using the autologon. Specifically the UserAccounts is working right The Test account is logging in with nothing to associate it as an admin. Is there any way to fix this?
  12. S

    Updating Microsoft Store and Adding New Apps to ISO

    @EGE94 Create a powershell script for this. Create a cmd file to call the powershell script. Add the cmd file to the runonce HKCU registry folder so that when you first install windows and sign in, it will run the commands. Here are some powershell tips. I would suggest finding the app...
  13. S

    UAC Account Settings Help

    My scenario: I have my batch file and powershell file in the Sources\$1\UpdatePC folder. The files copy over to C:\UpdatePC correctly. I have the runonce registry key that calls the batch file from the HKCU location: HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\RunOnce]...
Back
Top