Hello ,
I’m here to help you in resolving your issue
Since modifying ParentFolder in the registry doesn't reflect in Snipping Tool, use the following PowerShell script to set Downloads as the default location.
Below is the powershell script :
$RegPath = "HKCU:\Software\Microsoft\Windows\CurrentVersion\Explorer\User Shell Folders"
$NewPath = "C:\Users\$env:USERNAME\Downloads"
# Change Screenshot Save Location
Set-ItemProperty -Path $RegPath -Name "{B7BEDE81-DF94-4682-A7D8-57A52620B86F}" -Value $NewPath
# Restart Explorer to apply changes
Stop-Process -Name explorer -Force
Start-Process explorer
Now, Deploy the Script via Intune.
The script modifies only the current user’s setting. If deploying for all users, use HKEY_USERS in the script.
f users still see the old Pictures folder, have them manually check Snipping Tool settings and reselect the Downloads folder.
If that still doesn't work , then please use the Microsoft Q&A Forum (The System Administrators and IT Pro Forum) where they can assist you better.
https://learn.microsoft.com/en-us/answers/tags/
------------------------------------------
After trying above steps, please reach out to me if you have any doubts or issues
Help others by sharing your experience! Click “Yes” if this solution worked for you or “No” if it didn’t.