<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>powershell Archives - Apfelblog</title>
	<atom:link href="https://www.leppa.de/wp2/tag/powershell/feed/" rel="self" type="application/rss+xml" />
	<link>https://www.leppa.de/wp2/tag/powershell/</link>
	<description></description>
	<lastBuildDate>Thu, 06 Sep 2018 07:41:18 +0000</lastBuildDate>
	<language>de</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=6.8</generator>

<image>
	<url>https://www.leppa.de/wp2/wp-content/uploads/2020/04/Apfel_Free-60x60.png</url>
	<title>powershell Archives - Apfelblog</title>
	<link>https://www.leppa.de/wp2/tag/powershell/</link>
	<width>32</width>
	<height>32</height>
</image> 
	<item>
		<title>Skript Entfernen von Windows Store-Apps in Windows 8</title>
		<link>https://www.leppa.de/wp2/skript-entfernen-von-windows-store-apps-in-windows-8/</link>
		
		<dc:creator><![CDATA[Jens Appel]]></dc:creator>
		<pubDate>Sun, 12 Aug 2018 08:24:50 +0000</pubDate>
				<category><![CDATA[Windows]]></category>
		<category><![CDATA[apps]]></category>
		<category><![CDATA[powershell]]></category>
		<category><![CDATA[remove]]></category>
		<category><![CDATA[windows10]]></category>
		<guid isPermaLink="false">https://www.leppa.de:9443/wp2/?p=1067</guid>

					<description><![CDATA[<p>Mit diesem Skript können mehrere Windows Store-Apps aus einem Benutzerkonto in Windows 8 entfernt werden. Es erstellt eine Liste der installierten Windows Store-Apps. Sie können die Anwendungs-IDs angeben und sie alle in einem Zug entfernen. Quelle: Skript Entfernen von Windows Store-Apps in Windows 8</p>
<p>The post <a href="https://www.leppa.de/wp2/skript-entfernen-von-windows-store-apps-in-windows-8/">Skript Entfernen von Windows Store-Apps in Windows 8</a> appeared first on <a href="https://www.leppa.de/wp2">Apfelblog</a>.</p>
]]></description>
		
		
		
			</item>
		<item>
		<title>PowerShell Eigenschaften und Methoden eines Objektes anzeigen</title>
		<link>https://www.leppa.de/wp2/powershell-eigenschaften-und-methoden-eines-objektes-anzeigen/</link>
		
		<dc:creator><![CDATA[Jens Appel]]></dc:creator>
		<pubDate>Sun, 05 Aug 2018 17:58:19 +0000</pubDate>
				<category><![CDATA[Computer]]></category>
		<category><![CDATA[powershell]]></category>
		<guid isPermaLink="false">https://www.leppa.de:9443/wp2/?p=1060</guid>

					<description><![CDATA[<p>Um die Eigenschaften und Methoden eines Objektes anzuzeigen gibt es das Kommando: get-member &#160; Beispiel: PS C:\&#62; cat C:\Windows\System32\drivers\etc\hosts &#124; Get-Member TypeName: System.String Name MemberType Definition ---- ---------- ---------- Clone Method System.Object Clone(), System.Object ICloneable.Clone() CompareTo Method int CompareTo(System.Object value), int CompareTo(string strB), int IComparab... Contains Method bool Contains(string value) CopyTo Method void CopyTo(int sourceIndex, char[] [&#8230;]</p>
<p>The post <a href="https://www.leppa.de/wp2/powershell-eigenschaften-und-methoden-eines-objektes-anzeigen/">PowerShell Eigenschaften und Methoden eines Objektes anzeigen</a> appeared first on <a href="https://www.leppa.de/wp2">Apfelblog</a>.</p>
]]></description>
		
		
		
			</item>
		<item>
		<title>PowerShell equivalents for common Linux/bash commands &#8211; TheShellNut</title>
		<link>https://www.leppa.de/wp2/powershell-equivalents-for-common-linux-bash-commands-theshellnut/</link>
		
		<dc:creator><![CDATA[Jens Appel]]></dc:creator>
		<pubDate>Sun, 05 Aug 2018 17:49:34 +0000</pubDate>
				<category><![CDATA[Computer]]></category>
		<category><![CDATA[bash]]></category>
		<category><![CDATA[powershell]]></category>
		<guid isPermaLink="false">https://www.leppa.de:9443/wp2/?p=1061</guid>

					<description><![CDATA[<p>Quelle: PowerShell equivalents for common Linux/bash commands &#8211; TheShellNut</p>
<p>The post <a href="https://www.leppa.de/wp2/powershell-equivalents-for-common-linux-bash-commands-theshellnut/">PowerShell equivalents for common Linux/bash commands &#8211; TheShellNut</a> appeared first on <a href="https://www.leppa.de/wp2">Apfelblog</a>.</p>
]]></description>
		
		
		
			</item>
		<item>
		<title>Einfacher PowerShell wrapper</title>
		<link>https://www.leppa.de/wp2/einfacher-powershell-wrapper/</link>
		
		<dc:creator><![CDATA[Jens Appel]]></dc:creator>
		<pubDate>Sat, 28 Jul 2018 09:36:34 +0000</pubDate>
				<category><![CDATA[Windows]]></category>
		<category><![CDATA[bat]]></category>
		<category><![CDATA[powershell]]></category>
		<guid isPermaLink="false">https://www.leppa.de:9443/wp2/?p=1045</guid>

					<description><![CDATA[<p>@echo off :: Execute the PS1 file with the same name as this batch file. set filename=%~d0%~p0%~n0.ps1 if exist "%filename%" ( PowerShell.exe -NoProfile -NonInteractive -NoLogo -ExecutionPolicy Unrestricted -Command "&#38; '%filename%'" :: Collect the exit code from the PowerShell script. set err=%errorlevel% ) else ( echo File not found. echo %filename% :: Set our exit code. [&#8230;]</p>
<p>The post <a href="https://www.leppa.de/wp2/einfacher-powershell-wrapper/">Einfacher PowerShell wrapper</a> appeared first on <a href="https://www.leppa.de/wp2">Apfelblog</a>.</p>
]]></description>
		
		
		
			</item>
		<item>
		<title>Windows 10 Apps De-Installieren</title>
		<link>https://www.leppa.de/wp2/windows-10-apps-de-installieren/</link>
		
		<dc:creator><![CDATA[Jens Appel]]></dc:creator>
		<pubDate>Sat, 23 Jul 2016 12:42:50 +0000</pubDate>
				<category><![CDATA[Windows]]></category>
		<category><![CDATA[apps]]></category>
		<category><![CDATA[powershell]]></category>
		<category><![CDATA[windows 10]]></category>
		<guid isPermaLink="false">https://www.leppa.de:9443/wp2/?p=748</guid>

					<description><![CDATA[<p>Die folgenden Apps werden deinstalliert: Get-AppxPackage *3dbuilder* &#124; Remove-AppxPackage Get-AppxPackage *bingfinance* &#124; Remove-AppxPackage Get-AppxPackage *bingnews* &#124; Remove-AppxPackage Get-AppxPackage *bingsports* &#124; Remove-AppxPackage Get-AppxPackage *candycrushsaga* &#124; Remove-AppxPackage Get-AppxPackage *connectivitystore* &#124; Remove-AppxPackage Get-AppxPackage *messaging* &#124; Remove-AppxPackage Get-AppxPackage *skypeapp* &#124; Remove-AppxPackage Get-AppxPackage *solitaire* &#124; Remove-AppxPackage Get-AppxPackage *twitter* &#124; Remove-AppxPackage Get-AppxPackage *windowsphone* &#124; Remove-AppxPackage Get-AppxPackage *xbox* &#124; Remove-AppxPackage Get-AppxPackage *zunemusic* [&#8230;]</p>
<p>The post <a href="https://www.leppa.de/wp2/windows-10-apps-de-installieren/">Windows 10 Apps De-Installieren</a> appeared first on <a href="https://www.leppa.de/wp2">Apfelblog</a>.</p>
]]></description>
		
		
		
			</item>
		<item>
		<title>PowerShell Skripte ohne Signierung ausführen</title>
		<link>https://www.leppa.de/wp2/powershell-skripte-ohne-signierung-ausfuhren/</link>
		
		<dc:creator><![CDATA[Jens Appel]]></dc:creator>
		<pubDate>Wed, 12 Sep 2012 16:38:39 +0000</pubDate>
				<category><![CDATA[Windows]]></category>
		<category><![CDATA[powershell]]></category>
		<category><![CDATA[skript]]></category>
		<category><![CDATA[windows]]></category>
		<guid isPermaLink="false">http://www.psj-world.de/wp2/?p=558</guid>

					<description><![CDATA[<p>PS &#62; Set-ExecutionPolicy remotesigned Ausführungsrichtlinie ändern Die Ausführungsrichtlinie trägt zum Schutz vor nicht vertrauenswürdigen Skripts bei. Wenn Sie die Ausführungsrichtlinie  ändern, sind Sie möglicherweise den im Hilfethema "about_Execution_Policies" beschriebenen Sicherheitsrisiken ausgesetzt. Möchten Sie die Ausführungsrichtlinie ändern? [J] Ja  [N] Nein  [H] Anhalten  [?] Hilfe (Standard ist "J"): j PS &#62;</p>
<p>The post <a href="https://www.leppa.de/wp2/powershell-skripte-ohne-signierung-ausfuhren/">PowerShell Skripte ohne Signierung ausführen</a> appeared first on <a href="https://www.leppa.de/wp2">Apfelblog</a>.</p>
]]></description>
		
		
		
			</item>
		<item>
		<title>Grep mit PowerShell</title>
		<link>https://www.leppa.de/wp2/grep-mit-powershell/</link>
		
		<dc:creator><![CDATA[Jens Appel]]></dc:creator>
		<pubDate>Fri, 13 Jul 2012 13:00:15 +0000</pubDate>
				<category><![CDATA[Windows]]></category>
		<category><![CDATA[powershell]]></category>
		<guid isPermaLink="false">http://www.psj-world.de/wp2/?p=542</guid>

					<description><![CDATA[<p> Select-String -path .\071312_00001.log -pattern "Kbytes/s"</p>
<p>The post <a href="https://www.leppa.de/wp2/grep-mit-powershell/">Grep mit PowerShell</a> appeared first on <a href="https://www.leppa.de/wp2">Apfelblog</a>.</p>
]]></description>
		
		
		
			</item>
	</channel>
</rss>
