Difference between revisions of "Powershell"

(added category)
 
(One intermediate revision by one other user not shown)
Line 1: Line 1:
 +
[[Category:Windows]]
 
The Windows Powershell is Microsoft's new object-oriented .NET shell. It's more powerful than the standard cmd. You can [http://www.microsoft.com/windowsserver2003/technologies/management/powershell/default.mspx download] it for free.
 
The Windows Powershell is Microsoft's new object-oriented .NET shell. It's more powerful than the standard cmd. You can [http://www.microsoft.com/windowsserver2003/technologies/management/powershell/default.mspx download] it for free.
 +
 +
For security resasons script execution is disabled by default. In order to execute scripts you have to enable ist manually. Notice that this may result in security hazard if not used carefully.
 +
<pre>
 +
set-executionpolicy unrestricted
 +
</pre>
 +
 +
to disable script execution again, use the following command:
 +
<pre>
 +
set-executionpolicy restricted
 +
</pre>

Latest revision as of 08:03, 22 November 2006

The Windows Powershell is Microsoft's new object-oriented .NET shell. It's more powerful than the standard cmd. You can download it for free.

For security resasons script execution is disabled by default. In order to execute scripts you have to enable ist manually. Notice that this may result in security hazard if not used carefully.

set-executionpolicy unrestricted

to disable script execution again, use the following command:

set-executionpolicy restricted