active questions tagged powershell - Stack Overflow most recent 30 from stackoverflow.com 2009-11-28T16:06:49Z http://stackoverflow.com/feeds/tag/powershell http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1716674/how-to-clear-error-in-powershell 1 How to clear $Error in PowerShell? Matt Spradley 2009-11-11T17:13:26Z 2009-11-28T06:28:12Z <p>Is there a way to clear the $Error variable that tracks errors in a PowerShell session?</p> <p>If so, how do you do it?</p> <p>I have tried: <code>$error.clear</code></p> <p>In the PowerShell ISE on Windows 7 and the $Error array is still populated.</p> http://stackoverflow.com/questions/1799716/renaming-files-to-remove-periods-in-powershell 2 Renaming files to remove periods in Powershell fenster 2009-11-25T20:24:20Z 2009-11-28T03:59:00Z <p>I have a list of files like this:<br> Test.(file1)[text].txt<br> Test.(file2)[text].txt<br> Test.(file3)[text].txt </p> <p>I need to remove any "()","[]" and any ".", replace them spaces without changing the file extension. I've tried the following but it's not working:</p> <pre><code>dir C:\scratch\*.txt | % { Rename-Item $_ ($_.basename -replace "\(", " "` -replace "\)", " "` -replace "\[", " "` -replace "\]", " "` -replace ".", " ")} </code></pre> <p>Ideally the file name should end up in the format "Test file1 text.txt"</p> http://stackoverflow.com/questions/1785474/get-index-of-current-item-in-powershell-loop 2 Get index of current item in Powershell loop? Brian Vallelunga 2009-11-23T19:41:32Z 2009-11-27T23:45:27Z <p>Given a list of items in powershell, how do I find the index of the current item from within a loop?</p> <p>For example:</p> <pre><code>$letters = { 'A', 'B', 'C' } $letters | % { # Can I easily get the index of $_ here? } </code></pre> <p>The goal of all of this is that I want to output a collection using Format-Table and add an initial column with the index of the current item. This way people can interactively choose an item to select.</p> http://stackoverflow.com/questions/1772055/how-to-replace-a-pattern-in-a-file-with-an-argument-in-powershell 1 How to replace a pattern in a file with an argument in Powershell Jeff 2009-11-20T17:28:29Z 2009-11-27T18:01:26Z <p>I have a powershell script that is replacing patterns in a file with the argument passed to the script. I grabbed the algorithm from another site and it works great, except for the fact that when I use anything but a literal string, the pattern isn't replaced.</p> <p>Here's the original script:</p> <pre><code> (Get-Content c:\File.txt) | Foreach-Object { $_ -replace "\*", "@" } | Set-Content c:\File.txt </code></pre> <p>Here's my version (basically)</p> <pre><code> (Get-Content ("c:\File-" + $args[0] + ".txt")) | Foreach-Object { $_ -replace "\%pattern\%", $args[0] } | Set-Content ("c:\File-" + $args[0] + ".txt") </code></pre> <p>The new file is created correctly, and all instances of %pattern% are replaced, but with a blank string, not the string in $args[0]. I am getting hit with a scoping problem for the $args variable?</p> http://stackoverflow.com/questions/1804751/use-bat-to-start-powershell-script 0 Use bat to start Powershell script David.Chu.ca 2009-11-26T16:52:43Z 2009-11-26T17:24:06Z <p>I have a batch file test.bat to start a powershell script:</p> <pre><code>@pushd "C:\myscripts" powershell .\test.ps1 arg1 "arg2 with space" arg3 @popd </code></pre> <p>The script test.ps1 (located at C:\myscripts) is a very simple one like:</p> <pre><code># just print out the arguments Write-Output ("args count: {0}" -f $args.length) $args </code></pre> <p>Then I tried to start test.bat. I should get three arguments passed to ps1 but I got the following result:</p> <p>args count: 5 arg1 arg2 with space arg3</p> <p>What I expected in the script, args[0] should arg1 and args[1] should be "arg2 with space" and args3[2] be arg3. I cannot understand why the script actually gets 5 arguments.</p> <p>How can I pass parameters from cmd or batch to powershell as what I expected? Like this:</p> <pre><code>args count: 3 arg1 arg2 with space arg3 </code></pre> http://stackoverflow.com/questions/573623/powershell-vs-unix-shells 20 PowerShell vs. Unix Shells Andy White 2009-02-21T19:42:06Z 2009-11-26T13:07:19Z <p>I'm debating whether I should learn PowerShell, or just stick with Cygwin/Perl Scripts/Unix Shell scripts, etc.</p> <p>The benefit of PowerShell would be that the scripts could be more easily used by teammates that don't have cygwin; however, I don't know if I'd really be writing that many general purpose scripts, or if people would even use them.</p> <p>Unix scripting is so powerful, does PowerShell come close enough to warrant switching over?</p> <p>EDIT: Here are some of the specific things (or equivalents) I would be looking for in PowerShell:</p> <ul> <li>grep</li> <li>sort</li> <li>uniq</li> <li>Perl (how close does PowerShell come to Perl capabilities?)</li> <li>awk</li> <li>sed</li> <li>file (the command that gives file info)</li> <li>etc.</li> </ul> http://stackoverflow.com/questions/1802127/how-to-run-a-powershell-script-without-displaying-a-window 0 How to run a PowerShell script without displaying a window? Thomas Bratt 2009-11-26T07:45:06Z 2009-11-26T12:47:33Z <p>How is it possible to run a <a href="http://en.wikipedia.org/wiki/Windows%5FPowerShell" rel="nofollow">PowerShell</a> script without displaying a window or any other sign to the user?</p> <p>In other words, the script should run quietly in the background without any sign to the user.</p> <p>Extra credit for an answer that does not use third party components :)</p> http://stackoverflow.com/questions/1799014/test-path-behavior-in-powershell 1 Test-Path behavior in Powershell Rui 2009-11-25T18:29:51Z 2009-11-25T20:54:46Z <p>I'm trying to write a script in powershell to batch convert video files.</p> <p>The way I intend to use it is to go to some folder full of video files and run it. It uses a conversion program that can be run in "command-line mode" (named handbrake) and saves the converted files with "-android" appended to them before the file extension. For example, if I have a file named video1.avi in the folder, after running the script the folder has 2 files: video1.avi and video1-android.avi</p> <p>The reason I want to do this this way is so that I can check if, for each video file, there is a converted version of it (with -android appended to the name). And if so, skip the conversion for that file.</p> <p>And this is where I'm having touble. The problem is the Test-Path's behavior (the cmdlet I'm using to test if a file exists).</p> <p>What happens is, if the video file has an "unusual" name (for example in my case it's video[long].avi) Test-Path always returns False if you try to check if that file exists.</p> <p>An easy way for you to test this is for example to do this:</p> <p>Go to an empty folder, run notepad to create a file with "[" in its name: </p> <pre><code>&amp;notepad test[x].txt </code></pre> <p>Save the file</p> <p>then do this:</p> <pre><code>Get-ChildItem | ForEach-Object {Test-Path $_.FullName} </code></pre> <p>It does not return true! It should right? Well it doesn't if the file has "[" in its name (I didn't check for any other special characters)</p> <p>I've realized that if you escape the "[" and "]" it works</p> <pre><code>Test-Path 'test`[x`].txt' </code></pre> <p>returns true.</p> <p>How can I go around this issue? I want to be able to: given a BaseName of a file, append it "-android.avi" and check if a file with that name exists.</p> <p>Thanks, Rui</p> http://stackoverflow.com/questions/464777/how-do-i-change-a-files-attribute-using-powershell 2 How do I change a file's attribute using Powershell? Mark Capaldi 2009-01-21T10:40:32Z 2009-11-25T20:40:38Z <p>I have a Powershell script that copies files from one location to another. Once the copy is complete I want to clear the Archive attribute on the files in the source location that have been copied.</p> <p>How do I clear the Archive attribute of a file using Powershell?</p> http://stackoverflow.com/questions/1370419/powershell-script-to-disable-re-enable-a-tcp-ip-port 0 PowerShell Script to Disable/Re-enable a TCP/IP Port Mark 2009-09-02T22:10:44Z 2009-11-25T12:00:02Z <p>Is there a way to disable and re-enable a known TCP/IP port in PowerShell?</p> http://stackoverflow.com/questions/1795679/determine-users-accessing-a-shared-folder-using-powershell 0 Determine Users Accessing a Shared Folder Using PowerShell MagicAndi 2009-11-25T09:22:00Z 2009-11-25T10:28:50Z <p>Hi,</p> <p>I need to determine the users/sessions accessing a shared folder on a Windows XP (SP2) machine using a PowerShell script (v 1.0). This is the information displayed using Computer Management | System Tools | Shared Folders | Sessions. Can anyone give me pointers on how to go about this?</p> <p>I'm guessing it will require a WMI query, but my initial search online didn't reveal what the query details will be. </p> <p>Thanks, MagicAndi</p> http://stackoverflow.com/questions/1790801/deploy-powershell-exchange-cmdlets-with-site-but-without-installing-full-manageme 1 Deploy PowerShell Exchange Cmdlets with site but without installing full Management Instrumentation Alkersan 2009-11-24T15:29:34Z 2009-11-24T19:51:28Z <p>Is it possible to run web site for managing Exchange Recipients on a web-server, where only PowerShell is installed? I don<code>t want to install full Exchange Management Instrumentation on web-server, I want to use only Microsoft.Exchange.Management.PowerShell.Admin snap-in. Can I use some dll</code>s from Exchange Server bin folder?</p> http://stackoverflow.com/questions/992570/how-to-do-this-in-powershell-or-what-language-to-use-for-file-and-string-manip 3 How to do this in PowerShell? Or : what language to use for file and string manipulation? Peter 2009-06-14T10:14:13Z 2009-11-24T17:45:19Z <p>What language should I use for file and string manipulation?</p> <p>This might seem objective, but really isn't I think. There's lot to say about this. For example I can see clearly that for most usages Perl would be a more obvious candidate than Java. I need to do this quite often and at this time I use C# for it, but I would like a more scriptlike language to do this. </p> <p>I can imagine Perl would be a candidate for it, but I would like to do it in <a href="http://en.wikipedia.org/wiki/Windows%5FPowerShell" rel="nofollow">PowerShell</a> since PowerShell can access the .NET library (easy). Or is Python a better candidate for it? If I have to learn a new language, Python is certainly one on my list, rather than Perl.</p> <p>What I want to do for example, is to read a file, make some changes and save it again. E.g.: open it, number all lines (say with 3 digits) and close it. Any example, in any language, would be welcome, but the shorter the better. It is utility scripting I'm after here, not OO, TDDeveloped, unit-tested stuff of course. </p> <p>What I would very much like to see is something as (<a href="http://en.wikipedia.org/wiki/Pseudocode" rel="nofollow">pseudocode</a> here): </p> <pre><code>open foobar.as f foreach line in f.lines line.addBefore(currenIteratorCounter.format('ddd') + '. ') close f </code></pre> <p>So: </p> <pre><code>bar.txt Frank Zappa Cowboy Henk Tom Waits numberLines bar.txt bar.txt 001. Frank Zappa 002. Cowboy Henk 003. Tom Waits </code></pre> <p>UPDATE: </p> <p>The Perl and Python examples here are great, and definitely in the line of what I was hoping and expecting. But aren't there any PowerShell guys out there?</p> http://stackoverflow.com/questions/1787836/powershell-how-to-tell-copy-item-to-unconditionally-copy-files 0 Powershell: how to tell Copy-Item to unconditionally copy files ShaChris23 2009-11-24T04:43:07Z 2009-11-24T04:48:38Z <p>This Powershell script:</p> <pre><code> Copy-Item $src_dir $dst_dir$agent_folder -recurse </code></pre> <p>works if the resources are not there. But if the resources are there, it will say:</p> <pre><code>+ Copy-Item &lt;&lt;&lt;&lt; $src_dir $dst_dir$agent_folder -recurse + CategoryInfo : ResourceExists: (C:\Users\Pac\Desktop\Agents\Agent0\lib:S tring) [Copy-Item], IOException + FullyQualifiedErrorId : DirectoryExist,Microsoft.PowerShell.Commands.CopyItemComm and </code></pre> <p>What do I have to add to the command so that it will unconditionally copy the files?</p> http://stackoverflow.com/questions/1786185/run-powershell-scripts-on-remote-pc 0 Run PowerShell scripts on remote PC David.Chu.ca 2009-11-23T21:39:54Z 2009-11-24T00:08:22Z <p>I have installed PS 1.0 on a remote PC(RPC001). I used <a href="http://technet.microsoft.com/en-us/sysinternals/bb897553.aspx" rel="nofollow">Windows Sysinternals tool PSExec.exe</a> to execute the following process on the remote:</p> <pre><code> PSExec \\RPC001 -u myID -p myPWD PowerShell C:\script\StartPS.ps1 par1 par2 </code></pre> <p>I can see the PowerShell.exe process running on the remote PC afterwards, but it is actually doing nothing, just hanging there. I tried to put a simple code of "Write-Output/Host" a string in the script. I run the same script on the remote by RTS, it works there.</p> <p>Not sure if I miss anything else to run the script by using PSExec, or it is PSExec.exe limitation. I would like to start a PS script on remote to do something there locally (compress some files locally and remove old files) from my box.</p> <p>I asked a similar question in Stackoverflow: <a href="http://stackoverflow.com/questions/1752128/run-remote-process-by-powershell/1752483#1752483">Run remote process by powershell</a>. <a href="http://stackoverflow.com/users/210754/don">Don</a> suggested me to use PSExec. It sounds like an alternative way to solve the issue. However, I cannot get it working with PowerShell. Any way to get PS working on remote PC?</p> <p>By the way, I cannot use PS 2.0 since my network does not allow me to install Windows XP SP3, which is required for PS 2.0.</p> http://stackoverflow.com/questions/1783554/fast-and-simple-binary-concatenate-files-in-powershell 1 Fast and simple binary concatenate files in Powershell FkYkko 2009-11-23T14:44:10Z 2009-11-23T20:22:49Z <p>What's the best way of concatenating binary files using Powershell? I'd prefer a one-liner that simple to remember and fast to execute.</p> <p>The best I've come up with is:</p> <pre><code>gc -Encoding Byte -Path ".\File1.bin",".\File2.bin" | sc -Encoding Byte new.bin </code></pre> <p>This seems to work ok, but is terribly slow with large files.</p> http://stackoverflow.com/questions/854196/running-programs-easily-from-a-command-line-on-windows 2 Running programs easily from a command line on Windows Brian 2009-05-12T18:36:44Z 2009-11-23T19:49:19Z <p>Linux allows me to have a short system path by placing binaries in just a few locations. I don't have to edit the path because I just installed a new application, and I don't have to hunt for applications I want to run. How can I, with PowerShell as the program I use to launch programs from, accomplish the same thing on Windows (Vista)?</p> http://stackoverflow.com/questions/1780922/how-do-i-encode-a-4-byte-string-as-a-single-32-bit-integer 2 How do I encode a 4-byte string as a single 32-bit integer? halr9000 2009-11-23T03:09:30Z 2009-11-23T03:49:18Z <p>First, a disclaimer. I'm not a CS grad nor a math major, so simplicity is important. </p> <p>I have a four-character string (e.g. "isoy") that I need to pass as a single 32-bit integer field. Of course at the other end, I need to decode it back to a string. The string will only contain A-Z, and case is not important, if that helps.</p> <p>The funny part is that I'm starting with PowerShell on the sending end and Linux at the receiving end. I can use Perl or Python there, with a preference for Python. I don't actually need answers in each language, I'm most interested in a PowerShell (C# also good) example for going both ways.</p> http://stackoverflow.com/questions/1709714/powershell-scripts-to-backup-sql-svn 2 Powershell scripts to backup SQL, SVN bszom 2009-11-10T17:29:05Z 2009-11-22T22:01:27Z <p>I'm trying to use PowerShell to create some backups, and then to copy these to a web folder (or, in other words, upload them to a WebDAV share).</p> <p>At first I thought I'd do the WebDAV stuff from within PowerShell, but it seems this still requires a fair amount of "manual labour", ie: constructing HTTP requests. I then settled for creating a web folder from the script and letting Windows handle the WebDAV stuff. It seems that all it takes to create a web folder is to create a standard shortcut, as described <a href="http://www.leedesmond.com/weblog/?p=60" rel="nofollow">here</a>.</p> <p>What I can't figure out is how to actually copy files to the shortcut's target..? Maybe I'm going about this the wrong way.</p> <p>It would be ideal if I could somehow encrypt the credentials for the WebDAV in the script, then have it create the web folder, shunt over the files, and delete the web folder again. Or even better, not use a web folder at all. Third option would be to just create the web folder manually and leave it there, though I'd rather not.</p> <p>Any ideas/pointers/tips? :)</p> http://stackoverflow.com/questions/1772219/replacement-for-vern-buergs-list-com-in-64-bit-windows-7 1 Replacement for Vern Buerg's list.com in 64 bit Windows 7 Kevin 2009-11-20T17:53:46Z 2009-11-20T20:36:21Z <p>I would like to find a replacement for list.com, specifically the ability to accept piped input. For example:</p> <pre><code>p4 sync -n | list </code></pre> <p>which accepts the output of the perforce command and displays the results in the viewer/editor for manipulation or saving. I know that I would send the output to a file and then open the file in the viewer/editor but I use it for temporary results. </p> <p>List.com doesn't work on 64 bit Windows 7.</p> http://stackoverflow.com/questions/1772367/powershell-is-it-possible-to-set-alias-on-a-piped-command 0 Powershell: Is it possible to set-alias on a piped command? George Mauer 2009-11-20T18:23:35Z 2009-11-20T18:25:32Z <p>I would like to set the following alias up in my powershell profile:</p> <pre><code>set-alias mem-users get-process | ? {($_.PM -gt 10000000) -or ($_.VM -gt 10000000)} | sort -property PM </code></pre> <p>But when I try this out and call mem-users I just get the results of get-process. How would I set this up? Do I have to write a custom function? The examples for set-alias show a piped command working with the -passThru parameter but I can't get it to work.</p> http://stackoverflow.com/questions/1217565/can-i-query-changesets-via-tfpt-exe-tf-exe-or-via-the-tfs-api-from-powershell 1 Can I query Changesets via tfpt.exe, tf.exe, or via the TFS API (from powershell)? Cheeso 2009-08-01T21:49:47Z 2009-11-20T15:18:17Z <p>I know how to query workitems, although I haven't been very successful finding info on the WIQL. There's one basic example that seems to get repeated everywhere.</p> <p>I'd like to be able to query changesets. Can I do it with tf.exe, tfpt.exe, or.. ?</p> http://stackoverflow.com/questions/1767345/powershell-stdout-formatting-issue 0 PowerShell STDOUT Formatting Issue Michael S. 2009-11-19T23:32:03Z 2009-11-20T04:41:06Z <p>Is there a way to capture STDOUT information from an executable within powershell, without affecting the default behaviour of the STDOUT process? Whenever I attempt to capture output from an executable within PowerShell, it appears that the STDOUT is then formatted before being returned to the host/screen. Further, it also appears that PowerShell, when asked to capture stdout output, feeds the data to the host line by line, only returning a line of data once a line feed/carriage break is found in the output.</p> <p>Basically, I want to have a way to capture STDOUT data from an executable run within powershell, without having the STDOUT output, or action, changed IN ANY WAY. Does anyone know if this is possible currently?</p> <p>I have already read, and I am aware of, the limitations around the Start-Transcript/Stop-Transcript cmdlets. If this was able to grab this output for me, my problem would have been solved.</p> <p>Thanks in advance to anyone that can assist here.</p> <p>-M</p> http://stackoverflow.com/questions/1767219/mutually-exclusive-powershell-parameters 0 Mutually exclusive powershell parameters namenlos 2009-11-19T23:08:15Z 2009-11-20T03:22:17Z <h2>SCENARIO</h2> <ul> <li>I'm writing a cmdlet for Powershell 2.0 using Visual Studio 2008 and .NET 3.5</li> <li>the cmdlet requires 3 arguments. </li> </ul> <p>my intended grammar of the cmdlet is something like this: </p> <pre><code>cmdletname [foo|bar] p1, p2 </code></pre> <ul> <li>That reads as the user must give a value for "-foo" or "-bar" but can't give both together.</li> </ul> <h2>EXAMPLE OF VALID INPUT</h2> <pre><code>cmdletname -foo xxx -p1 hello -p2 world cmdletname -bar yyy -p1 hello -p2 world </code></pre> <h2>EXAMPLE OF INVALID INPUT</h2> <pre><code>cmdletname -foo xxx -bar yyy -p1 hello -p2 world </code></pre> <h2>MY QUESTION</h2> <ul> <li>My question is on how to do this in powershell so that it does all the checking for me - or if that is possible at all.</li> <li>I know I can use just have two optional parameters for foo and bar and simply do the error checking manually. That's how I have it implemented currently. </li> <li>Alternatively, I am interested in suggestions for different approaches.</li> </ul> http://stackoverflow.com/questions/1608506/powershell-script-to-enable-iis-management-scripts-and-tools 0 Powershell script to enable 'IIS Management Scripts and Tools' Miau 2009-10-22T16:45:24Z 2009-11-20T03:07:04Z <p>After looking around (for not terribly long I have to admit) I wonder if anyone can point me to a Powershell script that checks if 'IIS Management Scripts and Tools' is enabled and if its not then it enables it like you would from Add Windows features.</p> <p>I checked poshcode.org and powershell.com and couldnt find one</p> <p>I never touched Powershell before and I m trying to use this script to run as part of deployment automation</p> <p>Cheers</p> http://stackoverflow.com/questions/1766287/powershell-get-item-question 0 PowerShell Get-Item question David.Chu.ca 2009-11-19T20:28:46Z 2009-11-19T23:05:29Z <p>I am new to PS. Here is an example of my function codes:</p> <pre><code>function foo() { # get a list of files matched pattern and timestamp $fs = Get-Item -Path "C:\Temp\*.txt" | Where-Object {$_.lastwritetime -gt "11/01/2009"} if ( $fs -ne $null ) # $fs may be empty, check it first { foreach ($o in $fs) { # new bak file $fBack = "C:\Temp\test\" + $o.Name + ".bak" # Exception here Get-Item! See following msg # Exception thrown only Get-Item cannot find any files this time. # If there is any matched file there, it is OK $fs1 = Get-Item -Path $fBack .... } } } </code></pre> <p>The exception message is "The WriteObject and WriteError methods cannot be called after the pipeline has been closed. Please contact Microsoft Support Services."</p> <p>Basically, I cannot use Get-Item again within the function or loop to get a list of files in a different folder. Not sure why. Any explanation and what is the correct way to fix it?</p> <p>By the way I am using PS 1.0.</p> http://stackoverflow.com/questions/1752128/run-remote-process-by-powershell 0 Run remote process by powershell David.Chu.ca 2009-11-17T21:56:17Z 2009-11-19T16:57:13Z <p>I have the following line of code to create object to access to a remote server before I associate it with user name, password and process:</p> <pre><code>$process = [WMIClass]"\\remoteServer\ROOT\cimv2:Win32_Process" </code></pre> <p>I tried this on two PCs, one is OK without any errors, but another one I am going to run has an exception: </p> <pre><code>Cannot convert value "\\remoteServer\ROOT\cimv2:Win32_Process" to type "System.Manage ment.ManagementClass". Error: "Access is denied. (Exception from HRESULT: 0x800 70005 (E_ACCESSDENIED))" </code></pre> <p>The remoteServer is the same one. Not sure what I have to set on local PC or remote PC to make this work? On both client PCs, the user names are all member of Administrators.</p> http://stackoverflow.com/questions/1758779/retrieving-data-using-select-sql-statement-in-powershell 1 Retrieving data using select SQL statement in Powershell fenster 2009-11-18T20:19:31Z 2009-11-19T11:28:55Z <p>My goal is to assign the value of the results returned to a variable: </p> <pre><code>$SqlConnection = New-Object System.Data.SqlClient.SqlConnection $SqlConnection.ConnectionString = "Server=HOME\SQLEXPRESS;Database=master;Integrated Security=True" $SqlCmd = New-Object System.Data.SqlClient.SqlCommand $SqlCmd.CommandText = "select name from sysdatabases where name = 'tempdb'" $SqlCmd.Connection = $SqlConnection $SqlAdapter = New-Object System.Data.SqlClient.SqlDataAdapter $SqlAdapter.SelectCommand = $SqlCmd $DataSet = New-Object System.Data.DataSet $SqlAdapter.Fill($DataSet) $SqlConnection.Close() $DataSet.Tables[0] </code></pre> <p>The value returned should obviously be 'tempdb', so how can I assign this to a variable so this will work:</p> <pre><code>Write-output "Database is " $variablename </code></pre> <p>Desired output: Database is tempdb</p> http://stackoverflow.com/questions/1759953/debug-powershell-using-powergui 0 Debug PowerShell using PowerGUI David.Chu.ca 2009-11-18T23:50:55Z 2009-11-19T00:04:39Z <p>I use PowerGUI to edit my script. In Visual Studio, I can add command line argument from project properties. However, I cannot find a way to set parameters to the UI to debug my codes with specified $args.</p> <p>For example, I set one debug point in PowerGUI, first line of my start code. Then I try to start my script from UI's panel "PowerShell Console" with some parameters(which is one way I guess I can pass my parameters to run my scripts). The script runs without stopping in my debug points. Any way available in PowerGUI?</p> http://stackoverflow.com/questions/1756637/powershell-setting-com-enforce-access-checks-for-this-application 0 Powershell setting COM+ Enforce access checks for this application Bruce227 2009-11-18T15:06:30Z 2009-11-18T21:57:49Z <p>Hi,</p> <p>I'm having problems figuring out what is the Powershell string for choosing the "Enforce access checks for this application" under the Security tab of the properties for that application. Here is what I have so far for Powershell in choosing other things:</p> <pre><code>$comAdmin = New-Object -comobject COMAdmin.COMAdminCatalog $apps = $comAdmin.GetCollection("Applications") $apps.Populate(); $app = $apps | Where-Object {$_.Name -eq $targetApp} $app.Value("Identity") = $identity $app.Value("Password") = $passwordEncrypted $app.Value("ApplicationDirectory") = $appRootDir $app.Value("ConcurrentApps") = 1 # set to default $app.Value("RecycleCallLimit") = 0 # set to default $app.Value("Activation") = 1 # dedicate local server process $apps.SaveChanges() </code></pre> <p>Now I have all those other strings for the value but I can't figure out the one for the "Enforce access checks for this application"?</p> <p>Thanks</p>