Write your first PowerShell Script | Hindi | Lecture 10 | PowerShell Tutorial for Beginner's

preview_player
Показать описание
हेलो फ्रेंड्स,

अब पॉवरशेल सीखना बहुत ही आसान है क्यूंकि मै लाया हु आपके लिए पॉवरशेल टुटोरिअल हिंदी में । इस लेक्चर में हम अपनी पहली पॉवरशेल स्क्रिप्ट लिखेंगे। स्क्रिप्ट में हम foreach लूप और If Else का यूज़ करेंगे। । एक विंडोज सर्वर एडमिन के लिए पॉवरशेल एक बहुत ही जरूरी और उपयोगी टूल है। पॉवरशेल के बारे में और अधिक जानकारी के लिए पूरा वीडियो देखिये और अच्छा लगे तो लाइक, कमेंट, शेयर और सब्सक्राइब करिये मेरे चैनल "राहुल की पाठशाला" को ।

Hello Friends,

PowerShell learning now made easy because I have brought PowerShell tutorial in our mother tongue viz. Hindi. This is Rahul and I am an IT professional. I will be teaching you PowerShell from beginning and gradually will move towards advanced where we will be writing PowerShell scripts using Integrated Scripting Environment (ISE). In this video, We are going to create our first PowerShell script to start a windows service using PowerShell script. We are going to leverage Foreach loop and If Else statement in this script to achive our goal. For more such videos Please subscribe to my channel "Rahul Ki PaathShaala", like this Video, Leave your queries in comment section and share this video.

Credits:

Subscribe to my Channel:

Follow me on:

#RahulKiPaathShaala
#IfElseStatement
#HowtoStartaServiceUsingPowerShell
#RahulMishra
#RahulKumarMishra
#PowerShell
#PowerShellScripts
#PowerShellHindi
Рекомендации по теме
Комментарии
Автор

Sir if i execute this script in my personal laptop ..it will change anything ?

rohitsinha
Автор

Hi, I want to create folder with us standard date then copy data in blob storage with azcopy. Could you please help me

ArpitGupta-tviw
Автор

Very useful video, Please do post this kind of real time scenario video As soon as possible

BKiranKumar
Автор

Sir Very helpful videos, you explain the concepts very easily, Thanks for these excellent videos . I request please make Videos on Param Block and calculated properties.

vipinjha
Автор

Very Nice Explanation... Just one question. When you said $Service in $Services, $Services is the variable to Store the content of the file Servicename.txt. Do we also not need to declare $Service as well? Please correct me if I am wrong and also tell me the reason

AmitSharma-qlzm
Автор

$myimput = "Lokesh"

do {
$useinput = Read-Host "Enter your name "

if($useimput -eq $myimput )

{
Write-Host "you typed correct user name" -ForegroundColor Green

} else {
Write-Host ("you typed wrong") -ForegroundColor Yellow
}
}
while ((++$att) -lt 6)

if ($att -eq 6) {
write-host "we cannot Proceed further as user name is incorrect"
}

callvirender