steveray100
New Member
- Joined
- Jun 10, 2023
- Messages
- 1
- Thread Author
- #1
I am trying to reinstall the Windows 10 Settings app I got this off the web:
PowerShell -ExecutionPolicy Unrestricted Add-AppxPackage -DisableDevelopmentMode -Register $Env:SystemRootImmersiveControlPanelAppxManifest.xml
when I run it I get this:
cmdlet Add-AppxPackage at command pipeline position 1
Supply values for the following parameters:
Path:
It is asking for the path and I have no idea what the path is,, Anybody got any ideas?
PowerShell -ExecutionPolicy Unrestricted Add-AppxPackage -DisableDevelopmentMode -Register $Env:SystemRootImmersiveControlPanelAppxManifest.xml
when I run it I get this:
cmdlet Add-AppxPackage at command pipeline position 1
Supply values for the following parameters:
Path:
It is asking for the path and I have no idea what the path is,, Anybody got any ideas?
- Joined
- Mar 14, 2023
- Messages
- 39,408
The path that the PowerShell commandlet is asking for is the location of the ImmersiveControlPanel AppxManifest.xml file. By default, this file should be located in the System32 folder of your Windows installation directory. Here's how you can find the path:
1. Press Win + R on your keyboard to open the Run dialog box.
2. Type "cmd" and press Ctrl + Shift + Enter to open an elevated Command Prompt.
3. Type "cd %SYSTEMROOT%\System32" and press Enter to change the directory to System32.
4. Type "dir ImmersiveControlPanelAppxManifest.xml /s" and press Enter to search for the file.
The command will search for the file in all subdirectories within the current directory and display the path where the file is located once it is found. Once you have the path, copy and paste it into the PowerShell prompt when prompted for the Path parameter.
1. Press Win + R on your keyboard to open the Run dialog box.
2. Type "cmd" and press Ctrl + Shift + Enter to open an elevated Command Prompt.
3. Type "cd %SYSTEMROOT%\System32" and press Enter to change the directory to System32.
4. Type "dir ImmersiveControlPanelAppxManifest.xml /s" and press Enter to search for the file.
The command will search for the file in all subdirectories within the current directory and display the path where the file is located once it is found. Once you have the path, copy and paste it into the PowerShell prompt when prompted for the Path parameter.
- Joined
- Jul 22, 2005
- Messages
- 8,992
I am trying to reinstall the Windows 10 Settings app I got this off the web:
PowerShell -ExecutionPolicy Unrestricted Add-AppxPackage -DisableDevelopmentMode -Register $Env:SystemRootImmersiveControlPanelAppxManifest.xml
when I run it I get this:
cmdlet Add-AppxPackage at command pipeline position 1
Supply values for the following parameters:
Path:
It is asking for the path and I have no idea what the path is,, Anybody got any ideas?
The bot doesn't know what its talking about. Try:The path that the PowerShell commandlet is asking for is the location of the ImmersiveControlPanel AppxManifest.xml file. By default, this file should be located in the System32 folder of your Windows installation directory. Here's how you can find the path:
1. Press Win + R on your keyboard to open the Run dialog box.
2. Type "cmd" and press Ctrl + Shift + Enter to open an elevated Command Prompt.
3. Type "cd %SYSTEMROOT%\System32" and press Enter to change the directory to System32.
4. Type "dir ImmersiveControlPanelAppxManifest.xml /s" and press Enter to search for the file.
The command will search for the file in all subdirectories within the current directory and display the path where the file is located once it is found. Once you have the path, copy and paste it into the PowerShell prompt when prompted for the Path parameter.
Code:
Get-AppxPackage windows.immersivecontrolpanel | Foreach {Add-AppxPackage -DisableDevelopmentMode -Register "$($_.InstallLocation)\AppXManifest.xml"}
You can also try: Reset-Appxpackage windows.immersivecontrolpanel
nikkdrive18
New Member
- Joined
- Dec 1, 2023
- Messages
- 1
Similar threads
- Replies
- 0
- Views
- 118