Menu
Menu
DaniWeb
Log In
Sign Up
Read
Contribute
Meet
Search
Search
About 332 results for
powershell
- Page 1
Re: Powershell "get-executionpolicy" not working
Programming
Software Development
12 Years Ago
by khansen46
…, you need to run
Powershell
as an administrator. On your
Powershell
shortcut (or START-RUN then type
Powershell
and wait for it to… registry key. I have seen many recommendations to always run
Powershell
in elevated mode, and I always do since I use…
Powershell Script help
Programming
Software Development
13 Years Ago
by stevo7624
I am new to
Powershell
and I am trying to get an understanding…get some expert advice to help aide my journey into
Powershell
scripting. Here is the script: [System.Reflection.Assembly…]::LoadFrom("C:\
Powershell
\Ionic.Zip.dll") $Target = "C:\PSTarget"…
Re: Powershell "get-executionpolicy" not working
Programming
Software Development
12 Years Ago
by HTMLperson5
… to the registry key 'HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\
PowerShell
\1\ShellIds\Microsoft .
PowerShell
' is denied. At line:1 char:20…: (:) [Set-ExecutionPolicy], UnauthorizedAccessException + FullyQualifiedErrorId : System.UnauthorizedAccessException,Microsoft.
PowerShell
.Commands.SetExecutionPolicyComma nd What do I do?
Powershell to C#
Programming
Software Development
14 Years Ago
by adelsin
I have a
Powershell
script that I was hoping to either re-write or include into a C# so it may be compiled into an executable. I guess my first question is to see if anyone has any knowledge on how to directly go from
powershell
to C#. If not, I'll just start posting tidbits of the script that I'm trying to convert.
Powershell "get-executionpolicy" not working
Programming
Software Development
12 Years Ago
by HTMLperson5
…"RemoteSigned" to type "Microsoft.
PowerShell
ExecutionPolicyScope" due to invalid enumeration values. Specify…: (:) [Get-ExecutionPolicy], ParameterBindingException + FullyQualifiedErrorId : CannotConvertArgumentNoMessage,Microsoft.
PowerShell
.Commands.GetExecutionPolicyCommand What am i supposed to do!?
Re: Powershell to C#
Programming
Software Development
14 Years Ago
by Momerath
[URL="http://www.codeproject.com/KB/cs/HowToRunPowerShell.aspx"]This[/URL] project shows how to run
powershell
scripts in C#, might help you.
Powershell multi valued Parameter
Programming
Software Development
14 Years Ago
by stevetaylor15
… actual cmdlet would be below and does work in exchange
powershell
: Set-CalendarProcessing –ResourceDelegates [email]jonDoe@test.com,johnnydoe@test.com…
Powershell script to check Exchange mailbox for email
Programming
Software Development
12 Years Ago
by mrkm1188
I need a scipt or idea of how to write a script in
powershell
that checks the mailbox of a given email address for an email based on text from the subject. Also would need to retrieve the time and date from the email
PowerShell Scripting
Programming
Software Development
9 Years Ago
by Ian_7
… in the data table that was generated from my separate
powershell
function. To do this I figured I could use a…
Powershell script to backup from server to mobile VPN client
Programming
Software Development
9 Years Ago
by riahc3
… start a robocopy there.... I have the robocopy implemented in
PowerShell
now I need to implement the pinging and searching the…
powershell not doing what I suspect it should
Programming
Software Development
9 Years Ago
by shanenin
… is not giving similar output as the first example of
powershell
code PS C:\Users\shane> $x = 3 PS C…
Powershell datagridview cell click event
Hardware and Software
Microsoft Windows
9 Years Ago
by md.Rayad
I have a
powershell
script in that script i am using datagridview. My script …
PowerShell script: Backup copies of email on client computers
Programming
Software Development
9 Years Ago
by riahc3
… the email on my client's PC. Starting off with
PowerShell
, I would run this: Get-ChildItem -Path 'C:\' -Filter '*.pst…
Re: Question about Windows Powershell
Programming
Software Development
17 Years Ago
by Narue
Powershell
is a command line. Your question makes just as much sense as if you asked us how to write C++ with the DOS prompt. And the answer is the same: use it to open a text editor, write your code in the text editor, use it to run your compiler, and use it to run the program.
Re: Powershell - Last logon script with multiple filters
Programming
Software Development
12 Years Ago
by BitBlt
… great tutorial on it [ here](http://www.powershellpro.com/
powershell
-tutorial-introduction/
powershell
-tutorial-active-directory/). If you go down about two…
Faster efficient programming 2010 exchange powershell
Programming
Software Development
14 Years Ago
by stevetaylor15
….Default; Runspace runspace = System.Management.Automation.Runspaces.RunspaceFactory.CreateRunspace(connectionInfo);
PowerShell
powershell
=
PowerShell
.Create(); PSCommand command = new PSCommand(); command.AddCommand("Set-Mailbox…
Re: Faster efficient programming 2010 exchange powershell
Programming
Software Development
14 Years Ago
by paperless
Invoking
PowerShell
for each read could slow things down considerably, depending on … to move the recordset read and subsequent code inside a
PowerShell
script? I see credentials info being as a possible issue…
Call Powershell, then run stsadmin by button?
Programming
Software Development
13 Years Ago
by gameover9
…p.StartInfo.RedirectStandardOutput = true; p.StartInfo.FileName = "
powershell
.exe"; p.Start(); p.WaitForExit(); string output = p….StandardOutput.ReadToEnd(); return; } } }[/CODE]
Powershell
actually not executes but of course I need to run…
C# Stop-Process command of PowerShell
Programming
Software Development
11 Years Ago
by mewoooooo
I want to use Stop-Process command (of
PowerShell
) in c#. I know how to use "Get-Process&… user in textbox. private void button2_Click(object sender, EventArgs e) {
PowerShell
ps =
PowerShell
.Create(); ps.AddCommand("Stop-Process -Name " + (textBox1…
C# code withi Powershell scrips
Programming
Software Development
11 Years Ago
by Martin_3
…guys, I have some C# code in my
Powershell
script and in that code I have a global… variable. How can I access my variable from the
powershell
code ? $source = @' using System; using System.Collections.… attempting to add the .NET Framework class to the
PowerShell
session." Write-Warning "The error was: …
Re: regex matching a string with no single quotes in powershell
Programming
Software Development
4 Years Ago
by rproffitt
Here's a short bit from the web about
Powershell
oddities in this regard: - backtick to escape instead of \ - regex … There may be more but my answer is yes that
powershell
may not match regex101. Either make a cheat sheet of…
Re: Call Powershell, then run stsadmin by button?
Programming
Software Development
13 Years Ago
by Momerath
[url]http://www.codeproject.com/Articles/18229/How-to-run-
PowerShell
-scripts-from-C[/url]
Re: regex matching a string with no single quotes in powershell
Programming
Software Development
4 Years Ago
by xrjf
… from Microsoft that is primarily designed for system administration. Since
PowerShell
is built on top of the .NET framework, .NET’s… excellent regular expression support is also available to
PowerShell
programmers." Now, try using .NET's sequence (?!subexpr) and…
Windows PowerShell
Community Center
Geeks' Lounge
17 Years Ago
by Ramy Mahrous
Windows
PowerShell
is a very productive tool Microsoft has integrated it with …. I hope you agree opening a forum concerns in Windows
PowerShell
. Thanks and regards, Ramy Mahrous
Copy a folder to an FTP directory using Powershell
Programming
Software Development
12 Years Ago
by MadJako
Good Morning, I'm new to
Powershell
and i'm attempting to create a script which will copy a folder to a spesific directory on an FTP site. I did some Googling and all I seem to come up with are ways to copy the folder contents, but not the folder itself. Is there a easy to copy an entire folder to an FTP site using
Powershell
?
regex matching a string with no single quotes in powershell
Programming
Software Development
4 Years Ago
by Violet_82
Hi I'm trying to create a script in
powershell
that finds a string in a file and then modifies ….com/ but it appears to be behaving slightly different than
powershell
. Now, what do I have to do to match a…
Re: Windows PowerShell
Community Center
Geeks' Lounge
17 Years Ago
by Ramy Mahrous
Who said learn C++ in 2hrs???!! I said learn Windows
PowerShell
in 2Hrs!!
Re: Windows PowerShell
Community Center
Geeks' Lounge
17 Years Ago
by sneekula
[QUOTE=RamyMahrous;556416]Who said learn C++ in 2hrs???!! I said learn Windows
PowerShell
in 2Hrs!![/QUOTE]Sorry! Wouldn't you get stuck with Microsoft then?
Re: tic tac toe in powershell
Programming
Software Development
9 Years Ago
by Nutster
What version of
PowerShell
are you using for this? When I try to run it on
PowerShell
2.0, I get errors in that `-in` and `-notin` are not recognized operators. `-contains` and `-notcontains` are what is in this version, with reversed arguments.
Question about Windows Powershell
Programming
Software Development
17 Years Ago
by kylcrow
My work uses
Powershell
, I was wondering if someone can explain to me how to write c++ with it, if I even can, also what compiler to get for it, and where I can get it. Thanks -kylcrow
1
2
3
6
Next
Last
Search
Search
Forums
Forum Index
Hardware/Software
Recommended Topics
Programming
Recommended Topics
Digital Media
Recommended Topics
Community Center
Recommended Topics
Latest Content
Newest Topics
Latest Topics
Latest Posts
Latest Comments
Top Tags
Topics Feed
Social
Top Members
Meet People
Community Functions
DaniWeb Premium
Newsletter Archive
Markdown Syntax
Community Rules
Developer APIs
Connect API
Forum API Docs
Tools
SEO Backlink Checker
Legal
Terms of Service
Privacy Policy
FAQ
About Us
Advertise
Contact Us
© 2025 DaniWeb® LLC