Skip to content

Instantly share code, notes, and snippets.

@srgpsk
Created June 16, 2025 21:50
Show Gist options
  • Save srgpsk/39bc0d3e9674282b8c515ddf49fd8c80 to your computer and use it in GitHub Desktop.
Save srgpsk/39bc0d3e9674282b8c515ddf49fd8c80 to your computer and use it in GitHub Desktop.
#!/bin/bash
wsl_dir="/home/youruser/somefolder"
win_dir="$(wslpath -w "$wsl_dir")"
find "$wsl_dir" -type f | while read -r file; do
win_file=$(wslpath -w "$file")
powershell.exe -Command "(Get-Item '$win_file').Attributes += 'Archive'"
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment