<?xml version="1.0" encoding="UTF-8" ?>
<?xml-stylesheet type="text/xsl" href="https://communities.bentley.com/cfs-file/__key/system/syndication/rss.xsl" media="screen"?><rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/" xmlns:wfw="http://wellformedweb.org/CommentAPI/"><channel><title>update-PWFolderSecurity not found.</title><link>https://communities.bentley.com/products/projectwise/f/projectwise-powershell-extensions-forum/228053/update-pwfoldersecurity-not-found</link><description>I am trying to add some security to a folder and I am getting the below error: 
 PS C:\PS&amp;gt; UpdatePWFolderSecurity UpdatePWFolderSecurity : The term &amp;#39;UpdatePWFolderSecurity&amp;#39; is not recognized as the name of a cmdlet, function, script file, or operable</description><dc:language>en-US</dc:language><generator>Telligent Community 12</generator><item><title>RE: update-PWFolderSecurity not found.</title><link>https://communities.bentley.com/thread/705973?ContentTypeID=1</link><pubDate>Mon, 11 Apr 2022 11:17:49 GMT</pubDate><guid isPermaLink="false">6dad98f5-dbc9-4c4d-a9ba-e9da8dc6aa8e:36fa2176-3674-413b-bef8-7487c5a6f603</guid><dc:creator>Robert Biggar</dc:creator><description>&lt;p&gt;That&amp;#39;s good stuff, I&amp;#39;m going to grab these...&lt;/p&gt;
&lt;p&gt;this is the first time I have run into these dashes...but I guarantee I won&amp;#39;t be forgetting this lesson anytime soon! :-D&lt;/p&gt;
&lt;p&gt;Thanks for the script; I will add it into my profile as well!&lt;/p&gt;
&lt;p&gt;the HTML conversion for&amp;nbsp;links into normal strings I ran into a couple weeks ago...but in Excel. So this looks like a pretty interesting solution in PWRShell.&lt;/p&gt;
&lt;p&gt;They&amp;nbsp;haven&amp;#39;t come up often for me, but they are &amp;quot;sticky&amp;quot; when they do!&lt;/p&gt;
&lt;p&gt;I appreciate the help, Thanks Kevin!!&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;Bob&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: update-PWFolderSecurity not found.</title><link>https://communities.bentley.com/thread/705765?ContentTypeID=1</link><pubDate>Sat, 09 Apr 2022 02:27:43 GMT</pubDate><guid isPermaLink="false">6dad98f5-dbc9-4c4d-a9ba-e9da8dc6aa8e:1e9ec647-0413-48c7-b569-994cdc253f43</guid><dc:creator>Kevin van Haaren</dc:creator><description>&lt;p&gt;I see this when copying pasting from Outlook all the time. Also issues with smart quotes. In fact I&amp;#39;ve seen this so much I wrote a little function that fixes it for me. It converts smart double quotes to dumb double quotes, smart single quotes to dumb single quotes and both endash and emdash to a normal dash.&lt;/p&gt;
&lt;p&gt;I put it in my profile.ps1 so it&amp;#39;s always loaded (I also set an alias cc so i don&amp;#39;t have to type that long name i came up with)&lt;/p&gt;
&lt;p&gt;&lt;pre class="ui-code" data-mode="powershell"&gt;# Convert some annoying unicode characters into normal versions
function Convert-ClipboardUnicodeEntities {
	$clip = Get-Clipboard -Format Text -Raw -TextFormatType UnicodeText
	if (-not [string]::IsNullOrEmpty($clip)) {
		# replace unicode smart open double quotes with dumb straight double quotes
		$clip=$clip.Replace([char]0x201c,[char]0x0022)
		# replace unicode smart close double quotes with dumb straight double quotes
		$clip=$clip.Replace([char]0x201d,[char]0x0022)
		# replace unicode smart open single quote with dumb straight single quote
		$clip=$clip.Replace([char]0x2018,[char]0x0027)
		# replace unicode smart close single quote with dumb straight single quote
		$clip=$clip.Replace([char]0x2019,[char]0x0027)
		# replace endash with a dash
		$clip=$clip.Replace([char]0x2013,[char]0x002D)
		# replace emdash with a dash
		$clip=$clip.Replace([char]0x2014,[char]0x002D)
		Set-Clipboard -Value $Clip
	}
}
&lt;/pre&gt;&lt;/p&gt;
&lt;p&gt;BTW, if you&amp;#39;re interested here&amp;#39;s a variation on that will convert a projectwise url string that uses html/url entities and turns them into normal strings. I use this copying urls from Outlook that I want to paste into PW Explorer.&lt;/p&gt;
&lt;p&gt;&lt;pre class="ui-code" data-mode="powershell"&gt;# Convert HTML &amp;amp; URL entities to string characters
function Convert-ClipboardHtmlUrlEntities {
	$clip = Get-Clipboard -Format Text -Raw -TextFormatType Text
	if (-not [string]::IsNullOrEmpty($clip)) {
		# URLs can have some weirdly encoded characters, let&amp;#39;s fix those
		# clean up URL characters like %20
		$clip=[System.Net.WebUtility]::URLDecode($clip)
		# clean up html entities like &amp;lt;
		$clip=[System.Net.WebUtility]::HTMLDecode($clip)
		# replace &amp;amp;space; with a space (this is not a standard html entity, but ProjectWise uses it)
		$clip=$clip.Replace(&amp;quot;&amp;amp;space;&amp;quot;,&amp;quot; &amp;quot;)
		Set-Clipboard -Value $Clip
	}
}
&lt;/pre&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: update-PWFolderSecurity not found.</title><link>https://communities.bentley.com/thread/705521?ContentTypeID=1</link><pubDate>Thu, 07 Apr 2022 18:34:41 GMT</pubDate><guid isPermaLink="false">6dad98f5-dbc9-4c4d-a9ba-e9da8dc6aa8e:b83dad6d-0528-49c5-9ee6-e182f9988a63</guid><dc:creator>Robert Biggar</dc:creator><description>&lt;p&gt;to be sure...I will be &amp;quot;on guard&amp;quot; :-D&lt;/p&gt;
&lt;p&gt;Thanks again, Brian!!&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;B&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: update-PWFolderSecurity not found.</title><link>https://communities.bentley.com/thread/705499?ContentTypeID=1</link><pubDate>Thu, 07 Apr 2022 16:30:38 GMT</pubDate><guid isPermaLink="false">6dad98f5-dbc9-4c4d-a9ba-e9da8dc6aa8e:ece975fa-45b0-44ff-957e-9328554b9b25</guid><dc:creator>Brian Flaherty</dc:creator><description>&lt;p&gt;Be sure you are not copying and pasting from Word or another application like that. For some reason the dashes are different.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: update-PWFolderSecurity not found.</title><link>https://communities.bentley.com/thread/705470?ContentTypeID=1</link><pubDate>Thu, 07 Apr 2022 14:25:03 GMT</pubDate><guid isPermaLink="false">6dad98f5-dbc9-4c4d-a9ba-e9da8dc6aa8e:3fb4ca1e-7ca6-472b-94cf-f22592ef0c5f</guid><dc:creator>Robert Biggar</dc:creator><description>&lt;p&gt;hahaha!&amp;nbsp;&lt;/p&gt;
&lt;p&gt;It&amp;#39;s the &amp;quot;Dash&amp;quot; again&amp;nbsp; !!!&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Get-PWFolders -FolderID $folderID -JustOne -Slow | Update-PWFolderSecurity ‐MemberType &amp;#39;ul&amp;#39; ‐MemberName &amp;#39;MediaWiki&amp;#39; -MemberAccess &amp;quot;fr,fw&amp;quot; -IncludeInheritance -Verbose&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;notice the &amp;quot;dash&amp;quot; in front of the &amp;quot;MemberName&amp;quot; is smaller...shows on the command line as a different color&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;So.&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;I copy the Example line to make sure the syntax I start with is correct...this particular text...has those other dashes&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Problem solved.&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Thank you for your help Guys...that&amp;#39;s a new one for me!&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Bob&lt;/strong&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: update-PWFolderSecurity not found.</title><link>https://communities.bentley.com/thread/705459?ContentTypeID=1</link><pubDate>Thu, 07 Apr 2022 13:55:57 GMT</pubDate><guid isPermaLink="false">6dad98f5-dbc9-4c4d-a9ba-e9da8dc6aa8e:7d3d6924-10c3-42f4-a9f2-b5a1fa1681ce</guid><dc:creator>Brian Flaherty</dc:creator><description>&lt;p&gt;I almost never rely on positional. I prefer specifying the parameters. Makes everything obvious. Well, unless I&amp;#39;m doing something adhoc.&amp;nbsp; Anyways, I wrote that cmdlet, so, everything should work with or without specifying the parameters. Not sure why you are encountering so many issues with it.&amp;nbsp; Take a look at the examples provided.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: update-PWFolderSecurity not found.</title><link>https://communities.bentley.com/thread/705457?ContentTypeID=1</link><pubDate>Thu, 07 Apr 2022 13:55:54 GMT</pubDate><guid isPermaLink="false">6dad98f5-dbc9-4c4d-a9ba-e9da8dc6aa8e:8a153da2-0bfd-4dbb-b2f4-c5b69c652ab3</guid><dc:creator>Robert Biggar</dc:creator><description>&lt;p&gt;I am told that there is a &amp;quot;dash&amp;quot;, an &amp;quot;Mdash&amp;quot; and an &amp;quot;Ndash&amp;quot;...&lt;/p&gt;
&lt;p&gt;and that the M and N dashes are placed in the text, but if the text is &amp;lt;space&amp;gt; &amp;quot;dash&amp;quot; &amp;lt;space&amp;gt; the &amp;quot;dash&amp;quot; is converted to a normal dash...&lt;/p&gt;
&lt;p&gt;we have run into this with file and attribute names that don&amp;#39;t like the M and N dashes.&lt;/p&gt;
&lt;p&gt;it&amp;#39;s pretty confusing...but now I know what to look for...&lt;/p&gt;
&lt;p&gt;:-D&amp;nbsp; and I&amp;#39;m not likely to forget.... painful lessons are like that...&lt;/p&gt;
&lt;p&gt;Bob&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: update-PWFolderSecurity not found.</title><link>https://communities.bentley.com/thread/705456?ContentTypeID=1</link><pubDate>Thu, 07 Apr 2022 13:51:31 GMT</pubDate><guid isPermaLink="false">6dad98f5-dbc9-4c4d-a9ba-e9da8dc6aa8e:d71545b4-4c5d-4b63-b8b1-bb97ff21e6c2</guid><dc:creator>Robert Biggar</dc:creator><description>&lt;p&gt;now that you say that...that one didn&amp;#39;t complain...but -MemberName was not happy with me...It&amp;#39;s working great...I just have trouble with the parameter specifications...if I rely on positional...it&amp;#39;s golden.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;&lt;span&gt;&amp;nbsp;&lt;/span&gt;Update-PWFolderSecurity $folder &amp;#39;ul&amp;#39; &amp;#39;MDOT Traffic&amp;#39; &amp;#39;fr&amp;#39;, &amp;#39;fw&amp;#39; -DocumentSecurity -Verbose&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;Thanks, Brian!&lt;/p&gt;
&lt;p&gt;Bob&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: update-PWFolderSecurity not found.</title><link>https://communities.bentley.com/thread/705449?ContentTypeID=1</link><pubDate>Thu, 07 Apr 2022 13:37:56 GMT</pubDate><guid isPermaLink="false">6dad98f5-dbc9-4c4d-a9ba-e9da8dc6aa8e:ac89fcd9-8cda-4e50-9fdf-dceee4c1d835</guid><dc:creator>Brian Flaherty</dc:creator><description>&lt;p&gt;The member type &amp;#39;ul&amp;#39; should work fine.&lt;/p&gt;
&lt;p&gt;You will need to individually enter the access control settings.&amp;nbsp;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;Don&amp;#39;t use:&amp;nbsp;&lt;strong&gt;&amp;quot;fr,fw&amp;quot;&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;Use:&amp;nbsp; &amp;#39;&lt;strong&gt;fr&amp;#39;, &amp;#39;fw&amp;#39;&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;&amp;nbsp;&lt;/strong&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: update-PWFolderSecurity not found.</title><link>https://communities.bentley.com/thread/705443?ContentTypeID=1</link><pubDate>Thu, 07 Apr 2022 13:14:59 GMT</pubDate><guid isPermaLink="false">6dad98f5-dbc9-4c4d-a9ba-e9da8dc6aa8e:b2156e44-1d44-4f6a-83f8-a459629addd1</guid><dc:creator>Robert Biggar</dc:creator><description>&lt;p&gt;So...now that CMDlet is working...&lt;/p&gt;
&lt;p&gt;This is another odd thing:&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Get-PWFolders -FolderID $folderID -JustOne -Slow | Update-PWFolderSecurity ‐MemberType &amp;#39;ul&amp;#39; ‐MemberName &amp;#39;MediaWiki&amp;#39; -MemberAccess &amp;quot;fr,fw&amp;quot; -IncludeInheritance -Verbose&lt;/strong&gt;&lt;br /&gt;Update-PWFolderSecurity : A positional parameter cannot be found that accepts argument &amp;#39;MediaWiki&amp;#39;.&lt;br /&gt;At line:1 char:52&lt;br /&gt;+ ... One -Slow | Update-PWFolderSecurity ‐MemberType &amp;#39;ul&amp;#39; ‐MemberName &amp;#39;Med ...&lt;br /&gt;+ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~&lt;br /&gt; + CategoryInfo : InvalidArgument: (:) [Update-PWFolderSecurity], ParameterBindingException&lt;br /&gt; + FullyQualifiedErrorId : PositionalParameterNotFound,PWPS_DAB.UpdatePWFolderSecurity&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;** Note: I am setting parameters this way&amp;nbsp; &amp;nbsp;&amp;quot;&lt;span&gt;‐MemberType &amp;#39;ul&amp;#39;&amp;nbsp;&amp;quot; and I can&amp;#39;t get it to work&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span&gt;THIS does work...relying on position&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span&gt;PS &lt;strong&gt;C:\PS&amp;gt; Update-PWFolderSecurity $folder &amp;#39;ul&amp;#39; &amp;#39;MDOT Traffic&amp;#39; &amp;#39;fr&amp;#39;, &amp;#39;fw&amp;#39; -DocumentSecurity -Verbose&lt;/strong&gt;&lt;br /&gt;VERBOSE: 1 input folder(s).&lt;br /&gt;VERBOSE: MemberType: ul&lt;br /&gt;VERBOSE: Starting Access Control Update Process 4/7/2022 8:23:06 AM.&lt;br /&gt;VERBOSE: MemberName: MDOT Traffic : MemberID: 1530&lt;br /&gt;VERBOSE: Successfully added access control settings for &amp;#39;Lansing Support\biggarr\SecTest&amp;#39;.&lt;br /&gt;VERBOSE: - Added &amp;#39;MDOT Traffic&amp;#39; to Document security.&lt;br /&gt;VERBOSE: Ending Access Control Update Process 4/7/2022 8:23:07 AM.&lt;br /&gt;True&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span&gt;Works like a charm...as long as I don&amp;#39;t use:&amp;nbsp;&amp;nbsp;&amp;quot;‐MemberType &amp;#39;ul&amp;#39;&amp;nbsp;&amp;quot; syntax to set parameters...and rely only on position.&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span&gt;I have not run into this before either...is it a mode or a controllable&amp;nbsp;setting?&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span&gt;I know the parameters have default positioning... but in this case it does not want the &amp;quot;-&amp;lt;param&amp;gt;&amp;quot; flag...it won&amp;#39;t even take it&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span&gt;Have you run into this before?&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span&gt;Thanks!&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span&gt;Bob&lt;/span&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: update-PWFolderSecurity not found.</title><link>https://communities.bentley.com/thread/705440?ContentTypeID=1</link><pubDate>Thu, 07 Apr 2022 12:58:49 GMT</pubDate><guid isPermaLink="false">6dad98f5-dbc9-4c4d-a9ba-e9da8dc6aa8e:d12003d7-4f9c-4fd7-bdaa-817fda8246f9</guid><dc:creator>Robert Biggar</dc:creator><description>&lt;p&gt;Yep. absolutely correct...&amp;nbsp; THAT is a good catch.&lt;/p&gt;
&lt;p&gt;..and a very twisted problem.&amp;nbsp;&lt;/p&gt;
&lt;p&gt;it is the &amp;quot;dash&amp;quot; that is in the &amp;quot;Examples text&amp;quot;...very strange&lt;/p&gt;
&lt;p&gt;I don&amp;#39;t have my &amp;quot;Hexedit&amp;quot; handy to check the code on that...but whatever it is...it isn&amp;#39;t the dash we need!&lt;/p&gt;
&lt;p&gt;:-D&lt;/p&gt;
&lt;p&gt;Really. nice &amp;quot;Catch&amp;quot; Brandon!&lt;/p&gt;
&lt;p&gt;Thanks!&lt;/p&gt;
&lt;p&gt;Bob&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: update-PWFolderSecurity not found.</title><link>https://communities.bentley.com/thread/705432?ContentTypeID=1</link><pubDate>Thu, 07 Apr 2022 12:44:36 GMT</pubDate><guid isPermaLink="false">6dad98f5-dbc9-4c4d-a9ba-e9da8dc6aa8e:64f6d292-7e74-4aff-b153-fbf6ec639644</guid><dc:creator>Brandon Williams</dc:creator><description>&lt;p&gt;So the cmdlet is not case sensitive. The reason it was not working in your examples was because of the dash&lt;/p&gt;
&lt;p&gt;&lt;span&gt;Update‐pwfolderSecurity&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span&gt;Update-PWFolderSecurity&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span&gt;It might not look like much but the first dash is shorter. Almost like it was copied from a file that had a different font, a half dash, which I did not know existed. If you were to copy the above into PowerShell and look at the dash you will see what I mean. The top one is a shorter dash. So even if you copied the top line and did the correct capitals&amp;nbsp;in the cmdlet, it would still not work because of the type of dash. Not sure how to make a half dash but my guess it was copied from&amp;nbsp;a different font?&lt;/span&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: update-PWFolderSecurity not found.</title><link>https://communities.bentley.com/thread/705405?ContentTypeID=1</link><pubDate>Thu, 07 Apr 2022 11:16:14 GMT</pubDate><guid isPermaLink="false">6dad98f5-dbc9-4c4d-a9ba-e9da8dc6aa8e:96aa2ee6-73d5-44d0-bd34-c97fe57d080d</guid><dc:creator>Robert Biggar</dc:creator><description>&lt;p&gt;yeah, the hyphen definitely needs to be in there...that example without the hyphen was a test someone else observer from the documentation of the cmdlet...a test that didn&amp;#39;t work ;-)&amp;nbsp; &amp;nbsp;It just got caught up in my capture, but thanks, you are absolutely correct. ( I wouldn&amp;#39;t want anyone to fall down that rabbit hole).&lt;/p&gt;
&lt;p&gt;It seems the real problem for me was the case of the Text:&lt;/p&gt;
&lt;p&gt;&amp;quot;&lt;span&gt;Update‐pwfolderSecurity&amp;quot; did not work......&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span&gt;however&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span&gt;&amp;quot;Update-PWFolderSecurity&amp;quot; does work&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span&gt;???&amp;nbsp;&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span&gt;interesting....because&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span&gt;&amp;quot;New-Pwlogin&amp;quot;&amp;nbsp; works&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span&gt;but so does &amp;quot;new-pwlogin&amp;quot;....&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span&gt;maybe there are some aliases &amp;quot;lurking about&amp;quot;...&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span&gt;my &amp;quot;takeaway&amp;quot;...sometimes CMDlets ARE case-sensitive...(note to self)&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span&gt;The way I finally figured it out was to use &amp;quot;intellisense&amp;quot;...I selected from the list and it worked...then compared it to what had been failing.&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span&gt;I will be using that in the future.&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span&gt;I appreciate your comments with this....they were a&amp;nbsp;BIG help!&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span&gt;Bob&lt;/span&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: update-PWFolderSecurity not found.</title><link>https://communities.bentley.com/thread/705268?ContentTypeID=1</link><pubDate>Wed, 06 Apr 2022 18:17:50 GMT</pubDate><guid isPermaLink="false">6dad98f5-dbc9-4c4d-a9ba-e9da8dc6aa8e:1025429d-3a22-4a17-acaa-cd4a90572375</guid><dc:creator>Brandon Williams</dc:creator><description>&lt;p&gt;I copied your first example and the issue seemed to be the -&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;When I copied the dash it was shorter then the dash I use. I have no idea how that happened.&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;If you copy both cmdlets into powershell you&amp;#39;ll see what I mean.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: update-PWFolderSecurity not found.</title><link>https://communities.bentley.com/thread/705255?ContentTypeID=1</link><pubDate>Wed, 06 Apr 2022 17:25:10 GMT</pubDate><guid isPermaLink="false">6dad98f5-dbc9-4c4d-a9ba-e9da8dc6aa8e:c0df5f2b-4350-41d8-88ee-79ba23607248</guid><dc:creator>Robert Biggar</dc:creator><description>&lt;p&gt;&lt;/p&gt;
&lt;p&gt;I think it is &amp;quot;case&amp;quot;...&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;&amp;lt;lowercase PWF...&amp;gt;&lt;/p&gt;
&lt;p&gt;PS C:\PS&amp;gt; Update‐pwfolderSecurity&lt;br /&gt;Update‐pwfolderSecurity : The term &amp;#39;Update‐pwfolderSecurity&amp;#39; is not recognized as the name of a cmdlet, function, script file, or operable program. Check the spelling of the name, or if a path was &lt;br /&gt;included, verify that the path is correct and try again.&lt;br /&gt;At line:1 char:1&lt;br /&gt;+ Update‐pwfolderSecurity&lt;br /&gt;+ ~~~~~~~~~~~~~~~~~~~~~~~&lt;br /&gt; + CategoryInfo : ObjectNotFound: (Update‐pwfolderSecurity:String) [], CommandNotFoundException&lt;br /&gt; + FullyQualifiedErrorId : CommandNotFoundException&lt;/p&gt;
&lt;p&gt;&amp;lt;uppercase PWF...&amp;gt;&lt;/p&gt;
&lt;p&gt;PS C:\PS&amp;gt; Update-PWFolderSecurity&lt;br /&gt;Update-PWFolderSecurity : Parameter set cannot be resolved using the specified named parameters.&lt;br /&gt;At line:1 char:1&lt;br /&gt;+ Update-PWFolderSecurity&lt;br /&gt;+ ~~~~~~~~~~~~~~~~~~~~~~~&lt;br /&gt; + CategoryInfo : InvalidArgument: (:) [Update-PWFolderSecurity], ParameterBindingException&lt;br /&gt; + FullyQualifiedErrorId : AmbiguousParameterSet,PWPS_DAB.UpdatePWFolderSecurity&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;It &amp;quot;finds it&amp;quot; now... I don&amp;#39;t recall ever having case issues...maybe I was just lucky and always got the case ..&amp;quot;just right&amp;quot;???&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;...thanks for the help! I&amp;#39;m off to the next tree to slam into..&amp;quot;Yoiks and away&amp;quot;&lt;/p&gt;
&lt;p&gt;(assumption on the Looney tune literacy :-D)&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;Bob&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: update-PWFolderSecurity not found.</title><link>https://communities.bentley.com/thread/705246?ContentTypeID=1</link><pubDate>Wed, 06 Apr 2022 16:08:42 GMT</pubDate><guid isPermaLink="false">6dad98f5-dbc9-4c4d-a9ba-e9da8dc6aa8e:62c557ab-d211-48b8-9b27-5444a2760edd</guid><dc:creator>Brandon Williams</dc:creator><description>&lt;p&gt;Are all cmdlets doing this? Can you Try New-Pwlogin and see if its the same?&amp;nbsp;&lt;/p&gt;
&lt;p&gt;When I import I do the following as Administrator 64 bit Powershell. (You need to be administrator)&lt;/p&gt;
&lt;p&gt;&lt;span&gt;Install-Module PWPS_DAB -Force -Verbose&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;Import-Module PWPS_DAB -Force -Verbose&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: update-PWFolderSecurity not found.</title><link>https://communities.bentley.com/thread/705241?ContentTypeID=1</link><pubDate>Wed, 06 Apr 2022 16:02:07 GMT</pubDate><guid isPermaLink="false">6dad98f5-dbc9-4c4d-a9ba-e9da8dc6aa8e:4021f2dc-019d-4846-af56-2705e756786d</guid><dc:creator>Robert Biggar</dc:creator><description>&lt;p&gt;ok, I uninstalled the x86 and set up the 64 bit....same error (with Hyphen)&lt;/p&gt;
&lt;p&gt;PS C:\PS&amp;gt; Update‐pwfolderSecurity&lt;/p&gt;
&lt;p&gt;&lt;br /&gt;Update‐pwfolderSecurity : The term &amp;#39;Update‐pwfolderSecurity&amp;#39; is not recognized as the name of a cmdlet, function, script file, or operable program. Check the spelling of the name, or if a path was &lt;br /&gt;included, verify that the path is correct and try again.&lt;br /&gt;At line:1 char:1&lt;br /&gt;+ Update‐pwfolderSecurity&lt;br /&gt;+ ~~~~~~~~~~~~~~~~~~~~~~~&lt;br /&gt; + CategoryInfo : ObjectNotFound: (Update‐pwfolderSecurity:String) [], CommandNotFoundException&lt;br /&gt; + FullyQualifiedErrorId : CommandNotFoundException&lt;/p&gt;
&lt;p&gt;PS C:\PS&amp;gt; get-help pwfoldersecurity&lt;br /&gt;Security Protocol now set to TLS 1.2&lt;br /&gt;PWPS_DAB Version is 2.0.6.0&lt;br /&gt;This is a 64-bit process.&lt;/p&gt;
&lt;p&gt;Name Category Module Synopsis &lt;br /&gt;---- -------- ------ -------- &lt;br /&gt;&lt;br /&gt;Update-PWFolderSecurity Cmdlet pwps_dab UpdatePWFolderSecurity is used to add user(s), group(s), or userlist(s) access control to specified folders. &lt;br /&gt;&lt;br /&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: update-PWFolderSecurity not found.</title><link>https://communities.bentley.com/thread/705227?ContentTypeID=1</link><pubDate>Wed, 06 Apr 2022 15:10:58 GMT</pubDate><guid isPermaLink="false">6dad98f5-dbc9-4c4d-a9ba-e9da8dc6aa8e:59225cb9-c076-48b4-82d9-ecb81e2d4b90</guid><dc:creator>Robert Biggar</dc:creator><description>&lt;p&gt;I will try the 64 bit angle...the hyphen; there or not, gave me the same error... Thanks!&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: update-PWFolderSecurity not found.</title><link>https://communities.bentley.com/thread/705223?ContentTypeID=1</link><pubDate>Wed, 06 Apr 2022 14:48:19 GMT</pubDate><guid isPermaLink="false">6dad98f5-dbc9-4c4d-a9ba-e9da8dc6aa8e:04f8c5c6-7253-4c59-9da7-2a62454d54b4</guid><dc:creator>MWBSI</dc:creator><description>&lt;p&gt;In general with PowerShell, you need a hyphen(-) between the verb and the noun.&amp;nbsp; So the cmdlet is Update&lt;strong&gt;-&lt;/strong&gt;PWSecurity, not UdatePWSecurity.&amp;nbsp; Intellisense should help you out as you type.&lt;/p&gt;
&lt;p&gt;Mark Weisman | Bentley Systems&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: update-PWFolderSecurity not found.</title><link>https://communities.bentley.com/thread/705224?ContentTypeID=1</link><pubDate>Wed, 06 Apr 2022 14:48:02 GMT</pubDate><guid isPermaLink="false">6dad98f5-dbc9-4c4d-a9ba-e9da8dc6aa8e:c9d61b19-8b17-48f1-8579-d14d26964a6b</guid><dc:creator>Brandon Williams</dc:creator><description>&lt;p&gt;I did find it odd the error did not have the hyphen. Also, I would recommend using this in 64 bit PowerShell not x86. You&amp;#39;ll need to install and import into 64 bit PowerShell.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item></channel></rss>