Windows 10: Difference between revisions

From SWKLS WIKI
Jump to navigation Jump to search
(Created page with "==Migrating from Windows 7== ===Sticky Notes=== Type %AppData%\Microsoft\Sticky Notes in start menu search box (this is the sticky notes file location) and press Enter. Copy S...")
 
No edit summary
 
(One intermediate revision by the same user not shown)
Line 1: Line 1:
==Migrating from Windows 7==
==Migrating from Windows 7==
===Sticky Notes===
===Sticky Notes===
Type %AppData%\Microsoft\Sticky Notes in start menu search box (this is the sticky notes file location) and press Enter.
* Type %AppData%\Microsoft\Sticky Notes in start menu search box (this is the sticky notes file location) and press Enter.
Copy StickyNotes.snt to fileserver /temp folder
* Copy StickyNotes.snt to fileserver /temp folder
Close Sticky Notes on new computer is open
* Close Sticky Notes on new computer is open
Go to PC Settings > System > Apps & Features > Sticky Notes > Advanced Options > Reset. All app data will be deleted.
* Go to PC Settings > System > Apps & Features > Sticky Notes > Advanced Options > Reset. All app data will be deleted.
Do not open Sticky Notes app now.
* Do not open Sticky Notes app now.
Navigate to %LOCALAPPDATA%\Packages\Microsoft.MicrosoftStickyNotes_8wekyb3d8bbw\LocalState
* Navigate to %LOCALAPPDATA%\Packages\Microsoft.MicrosoftStickyNotes_8wekyb3d8bbw\LocalState
Create Folder within \LocalState called "Legacy"
* Create Folder within \LocalState called "Legacy"
Copy the Notes.snt to the Legacy folder and rename it "ThresholdNotes.snt"
* Copy the Notes.snt to the Legacy folder and rename it "ThresholdNotes.snt"
Start Sticky Notes.
* Start Sticky Notes.
All notes will now appear!!!
* All notes will now appear!!!
==Miscellaneous==
==Miscellaneous==
===RSAT Install On 1809+===
===RSAT Install On 1809+===
Line 19: Line 19:
===Set TrustedHosts===
===Set TrustedHosts===
Start the Windows Remote Management (WS-Management) Windows service. Then:
Start the Windows Remote Management (WS-Management) Windows service. Then:
<syntaxhighlight lang="powershell" line start="1">
<syntaxhighlight lang="powershell" line start="1">
Set-Item WSMan:\localhost\Client\TrustedHosts -Value "*" -Force
Set-Item WSMan:\localhost\Client\TrustedHosts -Value "*" -Force
</syntaxhighlight>
</syntaxhighlight>
[[Category:Windows]]

Latest revision as of 22:03, 27 March 2020

Migrating from Windows 7

Sticky Notes

  • Type %AppData%\Microsoft\Sticky Notes in start menu search box (this is the sticky notes file location) and press Enter.
  • Copy StickyNotes.snt to fileserver /temp folder
  • Close Sticky Notes on new computer is open
  • Go to PC Settings > System > Apps & Features > Sticky Notes > Advanced Options > Reset. All app data will be deleted.
  • Do not open Sticky Notes app now.
  • Navigate to %LOCALAPPDATA%\Packages\Microsoft.MicrosoftStickyNotes_8wekyb3d8bbw\LocalState
  • Create Folder within \LocalState called "Legacy"
  • Copy the Notes.snt to the Legacy folder and rename it "ThresholdNotes.snt"
  • Start Sticky Notes.
  • All notes will now appear!!!

Miscellaneous

RSAT Install On 1809+

reg add "HKEY_LOCAL_MACHINE\Software\Policies\Microsoft\Windows\WindowsUpdate\AU" /v UseWUServer /t REG_DWORD /d 0 /f
Get-WindowsCapability -Online -Name "RSAT*" | Add-WindowsCapability -Online

Set TrustedHosts

Start the Windows Remote Management (WS-Management) Windows service. Then:

Set-Item WSMan:\localhost\Client\TrustedHosts -Value "*" -Force