can xyplorer unblock several files at once ?
does it have this feature ?
like
Code: Select all
unblock-file -path "C:\Users\Brink\Desktop\Example.reg"
get-childitem "full path of folder" | unblock-fileCode: Select all
unblock-file -path "C:\Users\Brink\Desktop\Example.reg"
get-childitem "full path of folder" | unblock-filethanksMarco wrote:As stated above, scripting is the way. You can use this utility, just in case: https://technet.microsoft.com/en-us/sys ... s/bb896655 (I've never used PS very proficiently, my bad).
hihighend wrote:I personally don't allow ADS for downloaded files by default. Via gpedit or registry tweak.
Code: Select all
REG ADD "HKCU\Software\Microsoft\Windows\CurrentVersion\Policies\Attachments" /v "SaveZoneInformation" /t REG_DWORD /d "0x00000001" /f
hihighend wrote:E.g. in a command prompt:Don't know if this still works in Win10 (that OS sucks), but it should work in Win 7...Code: Select all
REG ADD "HKCU\Software\Microsoft\Windows\CurrentVersion\Policies\Attachments" /v "SaveZoneInformation" /t REG_DWORD /d "0x00000001" /f
Afaik notxyplorer can show alternate streams ?
E.g.:is there a way to purge alternate streams?
Code: Select all
$file = runret("""D:\Streams\streams.exe"" ""<cc_item>""");
$ads = gettoken(regexmatches($file, "^ .*"), 2, ":");
if ($ads) { return readfile("<cc_item>:$ads"); }hi highendhighend wrote:To show ADS with XYplorer:
You need the Streams.exe from https://technet.microsoft.com/en-us/sys ... 97440.aspx
Copy it anywhere you like and adapt the path in the following script.
Use that script for a custom column and it will display the ads data.
I've only tested it with a single file with one ads stream...
No, it will not be ultrafast and I wouldn't use it for folders with a large set of files but at least it (probably) works.
To make it faster you'd need to write an e.g. C++ application that reads ads data from a single file so that no further
parsing in xy is necessary...
Code: Select all
$file = runret("""D:\Streams\streams.exe"" ""<cc_item>"""); $ads = gettoken(regexmatches($file, "^ .*"), 2, ":"); if ($ads) { return readfile("<cc_item>:$ads"); }
Code: Select all
takeown /F C:\Windows.old\* /R /A
icacls C:\Windows.old\*.* /T /grant administrators:F
rmdir /S /Q C:\Windows.old\