<?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 arşivleri &#187; TechWorm</title>
	<atom:link href="https://www.tech-worm.com/tag/powershell/feed/" rel="self" type="application/rss+xml" />
	<link></link>
	<description>Bilim ve Teknolojiye Dair Ne Varsa!</description>
	<lastBuildDate>Tue, 25 Dec 2018 13:56:15 +0000</lastBuildDate>
	<language>tr</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=6.9</generator>

<image>
	<url>https://www.tech-worm.com/wp-content/uploads/2023/04/cropped-redico-32x32.png</url>
	<title>powershell arşivleri &#187; TechWorm</title>
	<link></link>
	<width>32</width>
	<height>32</height>
</image> 
	<item>
		<title>Windows PowerShell Nedir?</title>
		<link>https://www.tech-worm.com/windows-powershell-nedir/</link>
					<comments>https://www.tech-worm.com/windows-powershell-nedir/#respond</comments>
		
		<dc:creator><![CDATA[Alper Kaya]]></dc:creator>
		<pubDate>Tue, 25 Dec 2018 13:55:18 +0000</pubDate>
				<category><![CDATA[Bilgi]]></category>
		<category><![CDATA[microsoft]]></category>
		<category><![CDATA[powershell]]></category>
		<category><![CDATA[powershell ne işe yarar]]></category>
		<category><![CDATA[powershell nedir]]></category>
		<category><![CDATA[windows]]></category>
		<guid isPermaLink="false">https://www.tech-worm.com/?p=19634</guid>

					<description><![CDATA[<p>Windows PowerShell, Microsoft tarafından Windows komut satırı cmd.exe ve Windows Script Host&#8216;a alternatif olarak geliştirilen yeni nesil bir komut satırı uygulamasıdır. Windows PowerShell&#8216;in sunduğu yeni komut yapısı Unix sistemindeki komut yapısına benzemektedir. Kullanıcı herhangi bir komutu çalıştırdığında farklı komutlar ile bağ kurabilmektedir. Windows PowerShell 30 Kasım 2006&#8216;da ilk olarak Windows Vista işletim sisteminin bir parçası [&#8230;]</p>
<p>The post <a href="https://www.tech-worm.com/windows-powershell-nedir/">Windows PowerShell Nedir?</a> appeared first on <a href="https://www.tech-worm.com">TechWorm</a>.</p>
]]></description>
										<content:encoded><![CDATA[<p style="text-align: justify;"><strong>Windows PowerShell,</strong> Microsoft tarafından <strong>Windows</strong> komut satırı <strong>cmd.exe</strong> ve <strong>Windows Script Host</strong>&#8216;a alternatif olarak geliştirilen <strong>yeni nesil bir komut satırı</strong> uygulamasıdır. <strong>Windows PowerShell</strong>&#8216;in sunduğu yeni komut yapısı <strong>Unix sistemindeki komut yapısına</strong> benzemektedir. Kullanıcı herhangi bir komutu çalıştırdığında <strong>farklı komutlar ile</strong> bağ kurabilmektedir. Windows PowerShell <strong>30 Kasım 2006</strong>&#8216;da ilk olarak <strong>Windows Vista</strong> işletim sisteminin bir parçası olarak planlanmıştır. <strong>Microsoft Exchange Server 2007 ile beraber ilk kez piyasaya sürülmüştür.</strong> Windows <strong>PowerShell 1.0</strong> sürümü <strong>Windows XP, Windows Server 2003</strong> ve <strong>Windows Vista</strong> için ücretsiz indirilebilmektedir. <strong>Windows 7</strong> işletim sisteminden itibaren <strong>Windows PowerShell 2.0</strong> işletim sistemi ile beraber gelmektedir. <strong>Windows PowerShell 2.0</strong> bir önceki sürümünden farklı olarak görsel kullanıcı arayüzüne sahiptir.</p>
<h3 style="text-align: justify;"><strong>Windows PowerShell-Cmdlets</strong></h3>
<p style="text-align: justify;"><strong>Cmdlet (Command-let)</strong> Windows Powershell&#8217;in sahip olduğu özel komutlardır. <strong>Cmdlet</strong> komutlarının isimlerinden ne iş yaptıkları kolayca anlaşılabilmektir. Her bir <strong>Cmdlet</strong> için genişçe <strong>yardım bilgileri</strong> mevcuttur. Aşağıdaki komut sayesinde istenilen <strong>Cmdlet</strong> hakkında detaylı bilgiye ulaşılabilir.</p>
<p style="text-align: justify;"><strong>get-help &lt;Cmdlet-İsmi&gt; -detailed</strong></p>
<h3 style="text-align: justify;"><strong>Kullanım Örnekleri</strong></h3>
<ul>
<li style="text-align: justify;">Mevcut olan bütün Cmdletleri listelemek için:</li>
</ul>
<p style="text-align: justify;"><strong>get-command</strong></p>
<ul>
<li style="text-align: justify;">Get-Process komutu hakkında örnek kullanımlar görmek için:</li>
</ul>
<p style="text-align: justify;"><strong>get-help get-process -examples</strong></p>
<ul>
<li style="text-align: justify;">C:\ sürücüsüne geçmek için:</li>
</ul>
<p style="text-align: justify;"><strong>set-location C:\</strong></p>
<ul>
<li>P ile başlayan bütün uygulamaları sonlandırmak:</li>
</ul>
<p style="text-align: justify;"><strong>get-process p* | stop-process</strong></p>
<ul>
<li style="text-align: justify;">10 Mb dan fazla bellek kullanan uygulamaları bulmak ve sonlandırmak için:</li>
</ul>
<p style="text-align: justify;"><strong>get-process | where { $_.WS -gt 10MB } | stop-process</strong></p>
<p>Kaynak: <strong>Wikipedia</strong></p>
<p>The post <a href="https://www.tech-worm.com/windows-powershell-nedir/">Windows PowerShell Nedir?</a> appeared first on <a href="https://www.tech-worm.com">TechWorm</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://www.tech-worm.com/windows-powershell-nedir/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
	</channel>
</rss>
