need script to show hidden files and remove read only

Discuss and share scripts and script files...
Post Reply
kotlmg
Posts: 321
Joined: 30 Jun 2010 17:14

need script to show hidden files and remove read only

Post by kotlmg »

i need a small xyplorer script to remove hidden , read only option and make them available for all users. some virus has changed all my folders and files to hidden files. xyplorer is able to display hidden files. but i want a small script to restore the files and folders and subfolders etc to their earlier status.
as of now i am using bulk file changer at the following address

http://www.nirsoft.net/utils/bulk_file_changer.html

thanks in advance.

highend
Posts: 14942
Joined: 06 Feb 2011 00:33
Location: Win Server 2022 @100%

Re: need script to show hidden files and remove read only

Post by highend »

Code: Select all

    $dstFolder = inputfolder(, "Select the folder where folder/fileattributes should be resetted...");
    $itemList = folderreport("items", "r", $dstFolder, "r", , "|");
    attrstamp("rh", 4, $itemList);
    status "Finished resetting attributes...", "008000", "ready";
One of my scripts helped you out? Please donate via Paypal

kotlmg
Posts: 321
Joined: 30 Jun 2010 17:14

Re: need script to show hidden files and remove read only

Post by kotlmg »

thanks a lot sir.

CookieMonster

Re: need script to show hidden files and remove read only

Post by CookieMonster »

Highend - this is a quick show hidden files, toggle ?

Post Reply