Windows Vista Forums
Vista Forums Home Join Vista Forums Donate Vista Tutorials Tags

Welcome to Vista Forums we are your forum to discuss Windows Vista x64 and x86 systems. Whether you need help or just want to post an idea you have on Vista, this is the forum for you.
Register at Vista forums...the world biggest Windows Vista resource Join Vista Forums Now

Go Back   Vista Forums > Microsoft Technical Newsgroups > PowerShell

Write protect a file

Update your Vista Drivers Update Your Drivers Now!!
Closed Thread
 
Thread Tools Display Modes
Old 05-24-2007   #1 (permalink)
Stuart Grimshaw
Guest


 

Write protect a file

Is there any way to toggle the read-only attribute of a file from a
powershell script?


My System SpecsSystem Spec
Old 05-24-2007   #2 (permalink)
RichS
Guest


 

RE: Write protect a file

Assume we have a file test.txt in the current folder.

$t = get-item test.txt
$t.IsReadOnly = $true

or if you want to perform as one line could use
(get-item test.txt).IsReadOnly = $true

For other files need to vary the path
--
Richard Siddaway
Please note that all scripts are supplied "as is" and with no warranty
Blog: http://richardsiddaway.spaces.live.com/
PowerShell User Group: http://www.get-psuguk.org.uk


"Stuart Grimshaw" wrote:

> Is there any way to toggle the read-only attribute of a file from a
> powershell script?
>
>

My System SpecsSystem Spec
Old 05-24-2007   #3 (permalink)
Stuart Grimshaw
Guest


 

Re: Write protect a file

On May 24, 10:58 am, RichS <R...@discussions.microsoft.com> wrote:
> Assume we have a file test.txt in the current folder.
>
> $t = get-item test.txt
> $t.IsReadOnly = $true
>
> or if you want to perform as one line could use
> (get-item test.txt).IsReadOnly = $true


Thanks Richard, that's just what I was after.

My System SpecsSystem Spec
Closed Thread

Thread Tools
Display Modes



Similar Threads
Thread Thread Starter Forum Replies Last Post
Drive being recognized incorrectly as write protect. JeBuchanan Vista hardware & devices 6 08-11-2008 05:09 PM
USB Hard Drive Write Protect Error Michael Gerbasio Vista hardware & devices 2 07-23-2007 03:28 PM
Write protect problem Walter Blanchard Vista General 0 03-15-2007 10:06 AM
Write protect problem Walter Blanchard Vista file management 0 03-11-2007 02:49 PM
Write protect problem Walter Blanchard Vista hardware & devices 0 03-11-2007 02:49 PM


Vistax64.com is an independent web site and has not been authorized,
sponsored, or otherwise approved by Microsoft Corporation.
"Windows Vista", the Start Orb, and related materials are trademarks of Microsoft Corp.
© Designer Media 2005-2008

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51