Swapnil Infotech
Swapnil Infotech
  • Видео 69
  • Просмотров 163 254
Create Bulk Organizational Units (OU) in Active Directory Using CSV File
In This Video You will learn how to create multiple Organizational Units (OU) using powershell script and CSV file. Ensure you give the name in name column and Path should be "distinguishedName" of OU under which you want to create OU. We are using "New-ADOrganizationalUnit" command to create OU.
Please post your queries or script requirement in comment box and I'll try to answer that.
Script Here - github.com/Swapnil-Infotech/PowerShell/blob/main/Create%20Bulk%20Organizational%20Units%20in%20AD.ps1
==============Other Helpful Videos===========
How to resolve "No Images are available" | VMware Workstation 17.X
ruclips.net/video/l4wEz_faALI/видео.html
PowerShell Silently install Mozilla Firefox...
Просмотров: 201

Видео

How to Resolve "No Images are available" | VMware Workstation 17.X
Просмотров 1276 месяцев назад
In This Video You will learn how to resolve the issue and why are you getting the error. It's all happening because we use Typical (Recommended) way during VM creation and attach the ISO on next stage. Due to which it detects Operating System from attached ISO and collect details for automate installation like Product Key, Username, Password and OS Version and It create Floppy Disk which causes...
PowerShell Silently install Mozilla Firefox on List of Remote Servers
Просмотров 6706 месяцев назад
In This Video You will learn how to silently install Mozilla Firefox on list of remote servers,. Here we are using Invoke-command and Start-Process command to perform the action and few helping command has been used. Please use the script and let me know if you are facing any issue. Please post your queries or script requirement in comment box and I'll try to answer that. Script Link here githu...
How to configure Auto Start and Shutdown VMs in VMware ESXI and vCenter | vSphere 7
Просмотров 9026 месяцев назад
In This Video You will learn how to configure auto start VM and auto Shutdown VM with ESXi host. We have covered step by step process at ESXi layer as well as vCenter layer. You can Enable/Disable Auto Start/Shutdown, Change Guest Shutdown method, Change Order of Virtual Machine. Please post your queries or script requirement in comment box and I'll try to answer that. Other Videos Disable Root...
Disable Root Password Expiration on vCenter VCSA | vSphere 7.0
Просмотров 4376 месяцев назад
In This Video You will learn how to disable vCenter's "root: account password expiry. You can update email ID incase you want notification to be sent to any email ID before password expiry on same windows. Please post your queries or script requirement in comment box and I'll try to answer that. Other Helpful Videos How to Generate VMware Virtual Machine Snapshot report in HTML Format ruclips.n...
How to Generate VMware Virtual Machine Snapshot report in HTML Format
Просмотров 1656 месяцев назад
In This Video You will learn how to generate VMware Virtual Machine snapshot report into HTML format. We have used very basic command that you can understand easily. Script Link github.com/Swapnil-Infotech/PowerShell/blob/main/vCenter VM Snapshot Report HTML.ps1 Please post your queries or script requirement in comment box and I'll try to answer that. PowerShell How To Install Windows Update (*...
PowerShell How To Install Windows Update (*.MSU) Using PSEXEC Tool on Multiple Computers - PART 2
Просмотров 7208 месяцев назад
In This Video You will learn how to use PSEXEC tool to install Windows update on remote computers, Also you will learn few more things like FIle Selection prompt in PowerShell, Applying Filter in File Selection. How to use IF conditions and Generating Windows Patching report for past few days. Please use this script and let me know if you are facing any issue. Please post your queries or script...
PowerShell How To Install Windows Update (*.MSU) Patches to Multiple Remote Computers - PART 1
Просмотров 1,8 тыс.8 месяцев назад
In This Video You will learn how to use windows built in command and install Microsoft Windows Updates on multiple remote computers. This Script will extract (*.MSU) file content into remote computers C Drive and then (*.CAB) files will be used for actual Update installation. Please post your queries or script requirement in comment box and I'll try to answer that. Script Here github.com/Swapni...
PowerCLI Update Information Into VM Notes Field, Leaving Existing Info Intact
Просмотров 2849 месяцев назад
In This Video You will learn How to update info into VM Notes field, leaving existing info intact. This script will check existing notes and add new notes into new line and if no notes present then notes will be added as fresh notes. Also you can learn how to search or locate VMs base on Folders, Clusters, Resource Pool. Please post your queries or script requirement in comment box and I'll try...
PowerShell Find Restart Events on Multiple Remote Computers
Просмотров 63610 месяцев назад
In This Video You will learn how to find Windows reboot or shutdown event with timestamp remotely. We are using here Get-WinEvent command to perform our task. You can change Log Name and Event ID's as per your requirements. Script Here $Servers = gc C:\Scripts\LivePCs.txt foreach ($server in $Servers){ Get-WinEvent -ComputerName $server -FilterHashTable @{LogName='System';ID='41', '1074', '6008...
PowerShell Remove List Of Active Directory Users Group Membership and Disable Accounts
Просмотров 1,1 тыс.Год назад
In This Video, You can learn how to remove group membership from Active directory users and Disable accounts. If you are part of Joiner & Leaver team the it will be very helpful for you. Please put your queries in comment box and Ill try to answer that. Thank You ! Script Start $AllMember = gc C:\Scripts\RemoveMembership.txt Foreach ($Member in $AllMember){ Get-ADUser -Identity $Member -Propert...
PowerShell Copy AD Group Membership for Multiple Users using *.CSV File
Просмотров 496Год назад
In This Video you will learn how to copy AD group membership from one user to another user using CSV file. You can give input through CSV file where multiple users membership can be copied to multiple users at single click. Please mention your queries in comment box and ill try to answer it. Script Here $AllMember = Import-Csv C:\Scripts\Users.csv Foreach ($Member in $AllMember){ $Copyfrom = $M...
Get all Active Directory Users & Groups Created Recently
Просмотров 379Год назад
In This Video you will learn how to generate report for recently created Users and Groups on Active Directory. Here we have used Get-ADUser and Get-ADGroup command to generate report with the help of some variables. Please user this script and let me know if you have any query. Users $Days = read-host "Enter Number of Past days count : " $When = ((Get-Date).AddDays(-$Days)).Date Get-ADUser -Fil...
PowerCLI Automate multiple Virtual Machines Creation in vCenter using CSV file
Просмотров 2,4 тыс.Год назад
In This Video, you will learn how to automate multiple Virtual Machine build. We are using CSV file to give input for PowerShell script and whatever information you have used in *csv file, it will be used to build the VM's. You can use below script and let me know if you are facing any challenges. Script Here Connect-VIServer -Server mum-vc01.sitech.com $vms = Import-CSV "E:\VMList.CSV" foreach...
PowerShell Remotely Uninstall Google Chrome on Multiple Remote Computers
Просмотров 1,9 тыс.Год назад
In This Video, You can see how to identify Google Chrome Version from Registry and use the version information to uninstall it from computer remotely. Please use the script and let me know if you have any query. Please add "Null" at the end of uninstall command to avoid error as shown in Video. Script here $Servers = Get-content "C:\Scripts\livePCs.txt" Foreach ($Server in $Servers) { invoke-co...
PowerShell Uninstall WinRAR Software Silently on Multiple Remote Computers
Просмотров 2,2 тыс.Год назад
PowerShell Uninstall WinRAR Software Silently on Multiple Remote Computers
Find the Current User Logged on Remote Computer and Take Action
Просмотров 1,6 тыс.Год назад
Find the Current User Logged on Remote Computer and Take Action
Remove User Account or Group from Local Groups on Remote Computers
Просмотров 740Год назад
Remove User Account or Group from Local Groups on Remote Computers
Automate The Creation of Virtual Machines in VMWare
Просмотров 2,6 тыс.Год назад
Automate The Creation of Virtual Machines in VMWare
PowerCLI Exclude List of VM's From Script Deleting Snapshots in VMware
Просмотров 535Год назад
PowerCLI Exclude List of VM's From Script Deleting Snapshots in VMware
PowerCLI Power On a Suspended VMware Virtual Machine
Просмотров 224Год назад
PowerCLI Power On a Suspended VMware Virtual Machine
PowerShell Installing software remotely on Multiple Computers
Просмотров 3,5 тыс.Год назад
PowerShell Installing software remotely on Multiple Computers
PowerShell Send Email if Windows Service is in Stopped State
Просмотров 3,5 тыс.Год назад
PowerShell Send Email if Windows Service is in Stopped State
PowerShell Send email if windows service is not running
Просмотров 3,7 тыс.Год назад
PowerShell Send email if windows service is not running
Get Local Group Members From Remote computers
Просмотров 1,8 тыс.Год назад
Get Local Group Members From Remote computers
Powershell Script To Change Service Account or Update Password
Просмотров 3 тыс.Год назад
Powershell Script To Change Service Account or Update Password
Powershell How To Change Remote Computer (Workgroup) Local Account Password
Просмотров 2,2 тыс.Год назад
Powershell How To Change Remote Computer (Workgroup) Local Account Password
Delete Multiple Virtual Machine Snapshots Older Than Specific Days
Просмотров 1,8 тыс.Год назад
Delete Multiple Virtual Machine Snapshots Older Than Specific Days
How To Create File Selection Dialog Box in PowerShell
Просмотров 3,1 тыс.Год назад
How To Create File Selection Dialog Box in PowerShell
Add User/Group To The Local Administrators/RDP Group On Multiple Computers
Просмотров 1,8 тыс.Год назад
Add User/Group To The Local Administrators/RDP Group On Multiple Computers

Комментарии

  • @TheGroundzero313
    @TheGroundzero313 19 дней назад

    Brilliant! Thank you for sharing

  • @MrKbackia
    @MrKbackia 25 дней назад

    Working expected.. thank you!

  • @YnellMwa
    @YnellMwa Месяц назад

    Hello i always get a no bootable device as a problem I don’t understand why

    • @YnellMwa
      @YnellMwa Месяц назад

      When I open the vm

  • @himajakoneru7760
    @himajakoneru7760 Месяц назад

    Could you please post part 2 as well

  • @yoboyyash22
    @yoboyyash22 Месяц назад

    Do you have discord? I have multiple stations that are in one location that I am trying to connect to a Azure Win2019 VM so they can file share and such. Possible?

  • @mustaque_ahmad
    @mustaque_ahmad 2 месяца назад

    what if need to put multiple ports, like after 3389, 80, 443

    • @mustaque_ahmad
      @mustaque_ahmad 2 месяца назад

      i mean multiple ports check for multiple servers, as i tested putting multiple ports like 3389,80 not getting output, it's saying the arguments is not correct

    • @mustaque_ahmad
      @mustaque_ahmad 2 месяца назад

      got it $servers = get-content -Path C:\myscript\servers.txt $ports = Get-Content -Path C:\myscript\ports.txt foreach($server in $servers){ foreach($port in $ports){ Test-NetConnection -ComputerName $server -port $port -ErrorAction SilentlyContinue -WarningAction SilentlyContinue | Select computerName, Remoteport, TcpTestsucceeded } }

  • @jamesjames601
    @jamesjames601 2 месяца назад

    This great. I have similar query like this but I can't make it to work. Can you help me to find the computer/s where the user is logged on?

  • @satyajit2019
    @satyajit2019 2 месяца назад

    I want to uninstall all the c plus plus are remote computer. Is that possible?

  • @vinodhboddu6241
    @vinodhboddu6241 2 месяца назад

    Hi author, Can you make video how to delete multiple VMS using powershell. (DECOMISSION OF VMS)

  • @user-vd1fk2hk5k
    @user-vd1fk2hk5k 2 месяца назад

    hello sir... if you don't mind i need a command or a script to list of members of have access for shared folders.

  • @chandhrunarayananarayans1127
    @chandhrunarayananarayans1127 2 месяца назад

    Thanks for your vedio it's very useful . We have one query you are using own mail server so password not required only entered mail server but other linke G-Suite mail id how to configure.

  • @satyajit2019
    @satyajit2019 2 месяца назад

    I want to uninstall all c++ How?

  • @fabiogennarini7304
    @fabiogennarini7304 3 месяца назад

    Hi, this seems to be the solution i need and thanks, for explaining it so easy. I need to ad a command where if the service it not working, it should send an email with a notification telling me that the service is not runing, is it maybe possibile ? thanks

    • @SwapnilInfotech
      @SwapnilInfotech 3 месяца назад

      Yes, it is possible. Please have a look on my another Video and let me know if you need anything else. PowerShell Send Email if Windows Service is in Stopped State ruclips.net/video/RjMZKdKnqKo/видео.html

  • @rahulchourasia2559
    @rahulchourasia2559 3 месяца назад

    I am getting connecting to the remote computer failed with the following error WinRM cannot process the request. The following error occurred while using Kerberos authentication: Cannot find the computer. it doesn't ask for credentials ? if want to provide credentials how can I ?

  • @rashuisthebest
    @rashuisthebest 3 месяца назад

    Hi, First of all your videos are awesome and very helpful, I just had one issue regarding windows update, this code works with all the update with .msu file extension but there are few manual windows update comes with .exe file extension (eg: windows-kb890830-x64-v5.122_a7b6e1c3273aa45d39606490f815897274327b3f.exe and sqlserver2019-kb5029378-x64_b08544ab2490e036206967f0cf4d54399496954d.exe) Can you please help me out to get a code which can update these windows update as well like it does for all the .msu files, Thanks in Advance

  • @anilfad6137
    @anilfad6137 3 месяца назад

    Can i get the script

    • @SwapnilInfotech
      @SwapnilInfotech 3 месяца назад

      Script is already given in Video description. Please check and let me if any issue.

  • @user-sz6if6ch6u
    @user-sz6if6ch6u 3 месяца назад

    Hi swapnil, how to fetch details group membership of all users from a particular OU .??

  • @minhajahmed9373
    @minhajahmed9373 3 месяца назад

    This script is very good and I have built multiple machines. Need to go over couple small changes but it works. I have question as I have multiple Single node ESXi servers and they do not have clusters. How can a script to build on single esxi as your example is pointing to only cluster based nodes. Please give some tips to make is working. Thanks

  • @JamesRoyCoronel
    @JamesRoyCoronel 4 месяца назад

    hi sir, can you explain this command here please ?? foreach ($Server in $Servers)

    • @SwapnilInfotech
      @SwapnilInfotech 3 месяца назад

      When you use foreach command, it run entire script one by one on computers given it servers list. So first part variable is single entry taken from second variable which has multiple entry for server name. So we are asking foreach command to pick first computer name run the complete script and then pick second computer name and run complete script till it reaches last computer names.

  • @user-xc6nv7fs1m
    @user-xc6nv7fs1m 4 месяца назад

    hey it shows error the network name cannot be found. can u help me ?

  • @ibteshamahmed8085
    @ibteshamahmed8085 4 месяца назад

    I am doing this work on virtualbox. Using one DC and two member servers off that DC. The installation files are being copied but it is stuck here for a long time the Second Part 1 : Installing software on SVR1 (my 1st member server name).

  • @SunilBaniyal
    @SunilBaniyal 4 месяца назад

    I have Network license applications in which I have to prove serial number or server nahi at the time of installation. Can I use this script for those applications installation

    • @SwapnilInfotech
      @SwapnilInfotech 4 месяца назад

      Can you please send me installation instructions on swapnil_infotech@yahoo.com so I can tell if you can use this script.

    • @SunilBaniyal
      @SunilBaniyal 4 месяца назад

      @@SwapnilInfotech hello Swapnil I had sent you the mail and waiting for the script It will be a good learning experience for all of us.

  • @SunilBaniyal
    @SunilBaniyal 4 месяца назад

    The files are copied from server to users computer successfully but the process is stuck in in Installation. should we provide any administrator username and password in the script? can anyone help me please.

    • @SwapnilInfotech
      @SwapnilInfotech 4 месяца назад

      If filea are getting copied on remote computers then communication is working properly and there is no blockage. Now you have to concentrate on file path that you have provided and silent installation parameter. Please vhrck this tjings and let me know kf this works.

    • @SunilBaniyal
      @SunilBaniyal 4 месяца назад

      @@SwapnilInfotech I have tried many Mathilda but still unsolvable

  • @rashuisthebest
    @rashuisthebest 4 месяца назад

    Hi, your videos are very helpful , just in case is there any way we can put multiple KB's as an input

    • @SwapnilInfotech
      @SwapnilInfotech 4 месяца назад

      Yes you can, let me know if you have such requirements. If yes, then just provide more information what you want to do and i can help you on this.

    • @rashuisthebest
      @rashuisthebest 4 месяца назад

      @@SwapnilInfotech Hey, thanks for the response, I just need to input multiple KB's while finding that has been applied or not

  • @user-cv9ot6is3h
    @user-cv9ot6is3h 4 месяца назад

    Add-Computer : Cannot establish the WMI connection to the computer 'IP' with the following error message: The RPC server is unavailable. [I got this kind of error when I used this script for VPN connected system.]

  • @SunilBaniyal
    @SunilBaniyal 4 месяца назад

    I am unable to execute this script. Can anyone help me please ?

  • @user-ic4ws3rd8d
    @user-ic4ws3rd8d 5 месяцев назад

    Music ruined everything

  • @NontasIeremidis
    @NontasIeremidis 5 месяцев назад

    Good job 👍 How can we simultaneously run the update on e.g. 10-15 computers, instead of waiting for the first one to finish before the next one starts?

  • @falsehopetv4829
    @falsehopetv4829 5 месяцев назад

    how about removing bulk members of specific users?

  • @waynecreech
    @waynecreech 5 месяцев назад

    the volume is really low on this video, otherwise it was very helpfull

    • @SwapnilInfotech
      @SwapnilInfotech 5 месяцев назад

      Hey Sorry for inconvenience, Ill pay attention next time.

  • @ankurghosh7669
    @ankurghosh7669 5 месяцев назад

    Wow😮

  • @syedfarooq3208
    @syedfarooq3208 6 месяцев назад

    Hi Sir, Can you please make one script Multiple Vcenter status report. Like host, vms,datastore,HA, DRS,Memory,CPU,snapshot,power Vms. And this report send to mail

  • @vikram1530
    @vikram1530 6 месяцев назад

    Thank You 😎

  • @sravanpasapala9147
    @sravanpasapala9147 6 месяцев назад

    I would like to thank you for making such videos.... I am doing Windows OS pathing and updating Microsoft Defender antivirus manually on multiple servers. Can you please do one video for these two activities. 1. Required reboot for OS patching after updating OS patching. 2. Installed / updated list. 3. Required output for the MS Defenser antivirus signature ( Get-Mpcumputerstatus) after applying the MS Defenser antivirus signature 4. Installed /updated list.

  • @aniketparab999
    @aniketparab999 6 месяцев назад

    thanks Swapnil , keep it up

  • @sravanpasapala9147
    @sravanpasapala9147 6 месяцев назад

    Hi , I am watching your videos and it’ll very helpful for beginners like me 😊 … Can you please do a video for updating Microsoft Defender Antivirus and other Microsoft antimalware on multiple servers

  • @sangeetchatterjee1721
    @sangeetchatterjee1721 7 месяцев назад

    this title is not correct test-netconnection can only check TCP

    • @SwapnilInfotech
      @SwapnilInfotech 7 месяцев назад

      Good observation, changes has been made to title. Thank you very much for highlighting.

  • @franckygugus1937
    @franckygugus1937 7 месяцев назад

    Sorry I made a mistake in my request I wanted to talk about winget on all the posts is there a solution and can you explain it or do a tutorial on it thank you my friend 😁👍

  • @franckygugus1937
    @franckygugus1937 7 месяцев назад

    Hello can you tell me how to install psexec on all remote machines thank you and congratulations for everything you do

    • @SwapnilInfotech
      @SwapnilInfotech 7 месяцев назад

      Thank you for your compliment 😄 PSEXEC do not have installer file, it is executable file so you can just use copy paste part of the script and paste it in remote computers C drive.

  • @alkeshpatel4404
    @alkeshpatel4404 8 месяцев назад

    This work for only one users profile in specific workstation. not for all users

    • @SwapnilInfotech
      @SwapnilInfotech 8 месяцев назад

      Thank you for notifying to us, I’ll check on this and let you know.

  • @travelingsam557
    @travelingsam557 8 месяцев назад

    Hi..can you please help me develop a remote application from scratch using Windows power shell scripting. I am ready to compensate for your time.

    • @SwapnilInfotech
      @SwapnilInfotech 8 месяцев назад

      Please let me know your requirements on “swapnil_infotech@yahoo.com” If its possible I’ll definitely help you.

  • @hlo512
    @hlo512 8 месяцев назад

    hi Swapnil, i have errors when running this script. Can you help to troubleshooting?

    • @SwapnilInfotech
      @SwapnilInfotech 8 месяцев назад

      Can you provide information what error you are getting while running the script? And script file that you are using.

    • @hlo512
      @hlo512 8 месяцев назад

      Hi Swapnil, I watched other clip you made for private networks and it resolved the issues. Thank you very much 👍. So this clip only works for public domain network, correct? Also, I found that the user account used to execute the ps script have be the same across all the targets too.

  • @user-ub5ne6of5e
    @user-ub5ne6of5e 8 месяцев назад

    what tool do you use to view multiple remote servers from above video?

    • @SwapnilInfotech
      @SwapnilInfotech 8 месяцев назад

      If you are talking about the console view of all servers then it is VMware Workstation. It can connect to local VM Instances as well as vCenter server as well. Please let me know if you have any other queries.

    • @user-ub5ne6of5e
      @user-ub5ne6of5e 8 месяцев назад

      Oh Thanks @@SwapnilInfotech and for the tutorial as well.

  • @manishat8294
    @manishat8294 8 месяцев назад

    This script will work if remote computer requires password to login...? Please suggest.

    • @SwapnilInfotech
      @SwapnilInfotech 7 месяцев назад

      You have to add credential before making invoke-command request. Please let me know if you need help in doing it.

  • @doobip
    @doobip 8 месяцев назад

    This is very helpful. Thank you so much for sharing your knowledge.

  • @dbock316
    @dbock316 9 месяцев назад

    Will this work with the monthly windows cumulative updates?

    • @SwapnilInfotech
      @SwapnilInfotech 9 месяцев назад

      Yes this will work, Please let me know if you are facing any issue while doing so.

    • @laxmankarnati3867
      @laxmankarnati3867 7 месяцев назад

      Hi Sir I am unable to run this script it is getting error please help me@@SwapnilInfotech

  • @prabhugovindan1485
    @prabhugovindan1485 9 месяцев назад

    Hi Swapnil, can we get the deleted snapshot size as output

  • @scottyfhf
    @scottyfhf 9 месяцев назад

    This is exactly what I needed, tested and working. Thanks

  • @MohammedIrfan-bh2dg
    @MohammedIrfan-bh2dg 9 месяцев назад

    Tha ks for sharing the knowledge. Could you please provide how to install the patches for remote computers through the jump server. Thanks in advance.

  • @abuubakryali6067
    @abuubakryali6067 9 месяцев назад

    Can you kindly share how to uninstall using multi hop remoting?