PowerShell is a command prompt and a scripting environment designed for Windows system administration.
0
votes
0answers
4 views
Powershell - Suppress output from non-powershell commands?
I am running a command
hg st
and then checking it's $LASTEXITCODE to check for availability of mercurial in the current directory. I do not care about its output and do not want to show it to my ...
1
vote
0answers
5 views
Update TFS Build Status via Powershell
I've a TFS Build Definition setup where, I execute a powershell script for security hardening, applying final patches etc.
Sometimes this powershell script can fail and I would like to change the ...
0
votes
0answers
8 views
Cannot Create new IIS Site/AppPool in PowerShell
I am running the 64 bit version of Powershell on Windows 7 IIS 7.5. I am able to see all of my sites/app pools via the IIS module in Powershell, but if I try to create a new site or app pool I get an ...
1
vote
2answers
36 views
Removing element from .NET array .remove method not working as expected (Powershell)
I have some code where I'm trying to use the .NET way of working with arrays in Powershell and the .remove method is not removing the element I want (processname "wssm" in examples 2 and 3). I'm doing ...
0
votes
1answer
27 views
Powershell - printing out during a loop
I have to go through an OU and remove all the memberOf groups for all users. The script I have works, but I cannot get it to print out when each user is processed. So when I run the script, it ...
0
votes
0answers
13 views
Exception of type 'Microsoft.Online.Administration.Automation.MicrosoftOnlineException' was thrown
I'm using code on http://code.msdn.microsoft.com/office365/Office-365-Manage-users-by-cfc96d5e to connect to Office 365 via a test c# web application which basically connects to azure active directory ...
0
votes
0answers
7 views
Powershell - ConvertTo-WebApplication on IIS
I'm trying to use powershell to deploy a .NET 4 application to a virtual directory. I use the following code;
Import-Module webadministration
New-Item IIS:\AppPools\MainAppPool
...
1
vote
2answers
20 views
Not able to set the “PasswordNeverExpires” parameter to true in Powershell 2.0
Below is my Powershell script -
Import-Module ActiveDirectory
$objOU=[ADSI]“LDAP://OU=Service,OU=Accounts,DC=rjfdev,DC=com”;
$dataSource=import-csv “add_user2.csv”;
foreach($dataRecord in ...
0
votes
0answers
10 views
OneNote create Page with UpdateHierarchy - how to find new page?
I managed to create sections at very specific places within my OneNote Notebooks. Now I want to achieve the same with pages. So instead of using the unpredicteable-placing "CreateNewPage" method, I ...
1
vote
2answers
19 views
Refactor scriptblock into different function from start-job
Is it possible to have the script block contained in a different function from the function that contains the start-job method?
What I am looking for is this:
function Get-jobA
{
...
1
vote
3answers
38 views
Powershell > Path not found but it really exists
I have following powershell to move files from server to local. I keep getting path not found. The path is long like 280 characters + the file name is about 30 to 70 characters. What to do?
$destDir ...
0
votes
1answer
36 views
Powershell Script using ExecuteNonQuery() throws exception “Incorrect syntax near 's'.”
This is probably a very simple SQL problem, but I have researched it thoroughly and haven't been able to figure it out.
I have written a very simple script, that gathers data on files and folder, ...
1
vote
0answers
36 views
how to write a powershell script to release file if used by anyother process
I am using octopus deployment with teamcity. In many cases deployment fails because "The process cannot access the file or dll because it is being used by another process. How to write a script to fix ...
0
votes
1answer
36 views
Sort data from Microsoft SQL via powershell
I have the following script that allows me to get MAC Addresses from MS SQL Db.
Function Get-MAC ($Server)
{
$SQLServer = "TVEAPP02" #use Server\Instance for named SQL instances!
$SQLDBName ...
0
votes
1answer
24 views
Why is Get-WinEvent slower than Get-EventLog when getting events after a date?
When retrieving events after a specific date Get-WinEvent seems to be slower than Get-EventLog:
$SourceComputer = "MyServer"
$LogName = "Security"
$StartDate = (get-date).AddMinutes(-30)
$hashquery = ...
0
votes
1answer
17 views
Can't get AWS Elastic Beanstalk Command Line Tool to work on Windows 8. Get the following PowerShell error?
Add-Type : Cannot add type due to the following exception: Compiler executable
file csc.exe cannot be found.. Verify that version 3.5 of the Microsoft .NET
Framework is installed. On 64-bit versions ...
0
votes
0answers
43 views
Calling PowerCLI from Batch
Sorta like it sounds. To explain:
I want to add the VMID from Vsphere to a CSV for a computer automatically via batch.
So far I have:
$var = Get-View -ViewType VirtualMachine -Filter ...
1
vote
1answer
33 views
Powershell run as User
How can I run a certain line in a powershell script as a different user.
For example I have this line
$server = $args[0];
Add-PSSnapin -Name McliPSSnapIn
Mcli-Run SetupConnection -p server=$server
...
1
vote
2answers
30 views
PowerShell add Task to run PowerShell script with parameters
I am trying add a Task to the Task Scheduler from a PowerShell script that will run a PowerShell script with parameters.
The spaces in the file path are conflicting with the necessary quotes ...
2
votes
4answers
35 views
Calling/Setting a variable with a variable in the name
I'm trying to populate a hashtable dynamically.
Create empty hashtable (this works fine)
New-Variable -Name $summary_$count -Value @{}
Now add to this hashtable (this doesn't work)
...
1
vote
1answer
27 views
$LASTEXITCODE undefined after command
I'm going crazy, can someone explain me why the value of $lastexitcode is undefined?
look to my simple attempt: if I launch command dir, I get the correct output so $LASTEXITCODE must be 0.
...
0
votes
1answer
44 views
Get Data between Vertical Bars
I'm trying to extract the following data.
|SERVER-1|Running|SERVER-2|Running|SERVER-3|Running|
I would like to get the data between the vertical bars like this
SERVER-1
Running
SERVER-2
Running
...
0
votes
0answers
17 views
Multiple powershell scripts and command from vb.net System.Diagnostics.process
Hello i'm workin on a vb.net program who will call some powershell scripts and command to manage a Exchange 2010. At the moment i'm calling my scripts one at a time with a System.Diagnostics.process. ...
0
votes
1answer
14 views
PowerShell Exchange 2007 Outlook 2010 Full mailbox access except 1 folder
Does any one know a way to give userA full access to userB's mailbox with the exception of one folder in the userB's mailbox using PowerShell.
Thanks in advance
0
votes
1answer
40 views
Windows Powershell - Simplest way to run a bunch of commands and save output
In Windows Powershell, I want to make a script that runs a bunch of commands in succession.
Like so:
mongo a.js > aout.txt
mongo b.js > bout.txt
...
I'm using PowerShell to get access to ...
0
votes
0answers
32 views
Powershell Error - Exception calling “WriteEntry” with “2” argument(s)
This error "Exception calling "WriteEntry" with "2" argument(s):" appears when I run this script:
$a = new-object -type system.diagnostics.eventlog –argumentlist system
$a.source = "PowerShell Tute"
...
-3
votes
0answers
29 views
Obtain a list of unapproved communities by powershell script [closed]
The list of all Approved communities exist in a SharePoint List at
http://mysite/sites/communities/MysiteCommunityRequestLib/Forms/AllItems.aspx
All Communities exist in a site collection at
...
0
votes
0answers
37 views
Start-transcript in a background process
is there a way to handle start-transcript in a background process? I have a script launched in background. almost everything works fine, except logging with start-transcript? in fact, it creates my ...
1
vote
1answer
40 views
How to handle Powershell Format-List output in C#
PowerShell psh = PowerShell.Create();
//psh.AddScript("Get-Service | Format-List -Property Name, Status");
psh.AddScript("Get-Service");
Collection<PSObject> result = psh.Invoke();
foreach ...
0
votes
0answers
12 views
Error creating IIS WebApplication
I added a webApplication Under Default website using powershell as follows:
function CreateWebApplication([string]$WebApplicationName,[string]$AppPoolName,[string]$PhysicalPath)
{
try
{
...
0
votes
1answer
15 views
Filter XML output between 2 wildcards with Powershell
I want to filter text from a XML file for the enduser between 2 wildcards (= and ,).
The XML file:
<OPTIONS Product="Testing" Version="1.1">
<Domains>
<Domain ...
0
votes
0answers
13 views
New-WebServiceProxy how to pass custom made objects?
I have my WCF service and want to try out getting data from my WCF service via Powershell.
What I have done so far:
$svc = New-WebServiceProxy -Uri http://urltomyservice
I can easily call methods ...
0
votes
2answers
25 views
Executing Powershell script from command line with quoted parameters
I am automating the build of a legacy MS Access application, and in one of the steps, I am trying to make an Access executable (.ADE). I have come up with the following code, which is stored in a file ...
1
vote
1answer
14 views
Get-TfsItemHistory Version parameter
I wanted a way to find a distinct set of changed files from TFS from a certain date. From googling I found this article
...
2
votes
0answers
34 views
How do I detect if WinPE(4) has booted from a UEFI or BIOS?
I am looking for a way to reliably detect when I boot into WinPE 4 (powershell) (or WinPE 3 (vbs) as an alternative), have I booted from a UEFI or BIOS System? (without running a third party exe as I ...
-1
votes
0answers
68 views
Find multiple strings in regex
I have a text file with about 1500 lines. The file has a layout similar to this below. I need a regex that will run through the file and return the value directly after "InstanceID = " and then ...
0
votes
1answer
28 views
Sending multiple arguments to a Powershell opened with Start-Process
So I'm using the command
Start-Process powershell -Verb runas -ArgumentList $cmds
where $cmds is
$cmds = "cd C:\", "dir"
I just want the new powershell that I'm opening to run multiple commands ...
0
votes
1answer
14 views
Getting Services and delete them from powershell
I'm almost finished with a powershell script which will search after some services, and delete them if they exist. My problem is that if I use Get-Service on a service that does not exist an exception ...
1
vote
1answer
43 views
Powershell script called from C does not open OleDb Connection
When calling a Powershell script from a C function, my database connection does not open. However when I log on to the server as the user that runs the C program and launch it from a DOS prompt, ...
0
votes
2answers
50 views
Parameter has a function
In Powershell can I pass a function as a param of a function?
Test (!((Get-SPSolution $name).Deployed))
Function Test {
param ($extFunc)
do { Start-Sleep -Seconds 30 } while ($extFunc)
}
0
votes
3answers
48 views
Powershell pipe into exe and wait
I am piping an array of data into a executable program but I need it to block after every call in the foreach loop. It will leave the loop before it even opens the program from the first call.
...
-2
votes
1answer
46 views
Powershell Cmd and Option at runtime
Let me write this example: we are in a deploying process where we want call a command runtime (Get-SPFeature for example), and this command accepts some options that you want change during the process ...
0
votes
3answers
27 views
Regex to remove what ever comes in front of “\” using powershell
wanted one help, wanted a regex to eliminate a "\" and what ever come before it,
Input should be "vmvalidate\administrator"
and the output should be just "administrator"
0
votes
1answer
29 views
how to set powershell variables from multiple column in sql query
I have the following query that I run in powershell:
$Query = "SELECT
t1.BSM_NM
,t1.D_DTM AS MAXDATETIME
,CASE
WHEN ...
0
votes
0answers
20 views
How to use altovaxml.exe with parameters in powershell
I'm using a powershell script to run altovaxml.exe to transform a xml file to another:
.\AltovaXML -xslt2 test.xsl -in $element -out $tmpname -param name1=$value1 -param name2=$value2 -param ...
0
votes
0answers
13 views
SharePoint 2013 Create Variation Labels with powershell script [migrated]
I'm actually trying to add variation labels to a site using powershell script (SharePoint 2013), and i know there is no powershell script for the job so im looking at some c# object model and i found ...
0
votes
2answers
17 views
Parse PowerShell command line arguments on a module load
I'm building a PowerShell module and I'd like to get the command line arguments from the main script parsed when module gets loaded.
Any ideas on how to do that? I have checked that $args has values ...
0
votes
2answers
25 views
Powershell class name contains dot(.)
http://google-gdata.googlecode.com/svn-history/r902/docs/folder41/T_Google_GData_Spreadsheets_ListEntry_Custom.htm
$variable = New-Object Google.GData.Spreadsheets.ListEntry ???
How to create this?
1
vote
1answer
32 views
wraping powershell script from C#
i'm trying to wrap an already made powershell script with C# GUI client.
the script acts according to inputs from the user, and it has also outputs according to them.
i would like to get the ...
-1
votes
1answer
24 views
Powershell ConvertTo-CSV custom headers
Does Powershell support using custom header names when converting data to CSV? I'm convertering user data from Active Directory and want to use other names in the headers than the property names.
My ...



