-
Posted to
IIS7 - Configuration & Scripting
by
trnsfrmrsr
on
11-19-2008, 10:27 PM
With the powershell script (if you can call it that i guess so if you throw it in a file). I found the error. The access section has to have capital Read,Write,Source in it. If a rule is already there for a user it will also fail.
Shouldn't make a difference, but I've been running it from the IIS powershell provider (extra ...
-
Posted to
IIS7 - Configuration & Scripting
by
trnsfrmrsr
on
11-19-2008, 7:58 PM
I'm on server 2008 with the most recent updates.
I just gave your command another try and it worked!!, this will certainly look (and probably work much better) than the my .net/powershell solution.
can't believe I didn't think to use quotes around the whole -section option.
Thanks for your help
-
Posted to
IIS7 - Configuration & Scripting
by
trnsfrmrsr
on
11-19-2008, 4:46 PM
Well, this might not be the most elegant solution but I fixed it. I wanted something in powershell so I could go ahead and add this to my migration script. basically I converted the c# script generated by the admin tool.
thanks everyone for your help
here it is (if anyone ever uses this, replace site123 with you site and domain.net\user123 ...
-
Posted to
IIS7 - Configuration & Scripting
by
trnsfrmrsr
on
11-19-2008, 1:45 PM
thanks for the admin pack reccomendation I used the admin tool to generate an appcmd script, when i run the script.....
appcmd.exe set config "Default Web Site/site123" -section:system.webServer/webdav/authoringRules /+"[users='domain.net\user123',path='*',access='Read, Write, Source']" /commit:apphost ...
-
Posted to
IIS7 - Configuration & Scripting
by
trnsfrmrsr
on
11-18-2008, 7:22 PM
I've been playing around with all of the options you've mentioned. I seem to run into issues with actually setting or create the objects needs to set an authoring rule equal to.
I followed the directions here to use appcmd.exe to try and set the authoring rules up ...
-
Posted to
IIS7 - Configuration & Scripting
by
trnsfrmrsr
on
11-17-2008, 6:55 PM
I'm faced with migrating a massive file server from iis6 to iis7 (on folder for each of our users to store documents). I've figured out how to programatically migrate data, create virtual directories for each user however, I'm having trouble figuring a good way to add WebDav authoring rules. I'd like to add one ...
-
Posted to
IIS7 - Publishing
by
trnsfrmrsr
on
06-24-2008, 12:37 PM
I should note that everything seemed to work fine until I rebooted the server. Before the reboot I was able to map to the server in My Network Places copy, paste and edit documents with not problems.
-
Posted to
IIS7 - Publishing
by
trnsfrmrsr
on
06-23-2008, 12:15 PM
I was finally able to get WebDav working to publish files with WebDav and everything seems to be ok, however for some reason, out of the blue (seemingly) whenever a user opens an office document now they only get a read-only version of the document. Text files seem to be ok, just office seems to be throwing the fit.
Everyone thats been testing ...
-
Posted to
IIS7 - Publishing
by
trnsfrmrsr
on
06-10-2008, 6:49 PM
The exact error upon exectuion of the command is:
"System Error 1920, The File Cannot be accessed by the system"
According to the WebDAV setup tutorial, this means that the user does not have proper permissions, however, I created authoring rules to add user groups domain\user which the account I'm trying to do this with is ...
-
Posted to
IIS7 - Publishing
by
trnsfrmrsr
on
06-10-2008, 6:41 PM
I rebuilt the server and set it up using the exact instructions at:
http://learn.iis.net/page.aspx/350/installing-and-configuring-webdav-on-iis-70/
Now i can connect with the WebDAV redirector on the local server using the local admin account. However, as soon as i try to access the WebDAV directory as a network user (I added Domain\Group in ...