PowerShell

Powershell Scripting Techniques : Using While in the Scripts to wait for Network Connection to be Establish.

Hi, In any scripting language, the one of the  important things are techniques. You can call it scripting techniques. Sometime when you are writing scripts, there are some  certain problems come , and to solve them we need to add a special logics and special techniques to handle them. Same thing was happen to me,… Continue reading Powershell Scripting Techniques : Using While in the Scripts to wait for Network Connection to be Establish.

PowerShell

Changing Desktop Wallpaper Positions using Powershell.

Hi, Yesterday i blogged about changing Desktop background colour using Powershell. Today we are going to change the Desktop Wallpaper Position using Powershell. Like the previous post this is again a registry tweak. Windows Desktop wallpaper has 5 types of  Picture Position. Center Fill Fit Stretch Tile The registry key which retains these settings is… Continue reading Changing Desktop Wallpaper Positions using Powershell.

Poetry

Hindi Poetry : Smoke from the Heart.

  दिल में लगता है, कुछ अभी अरमान बाकी हैं,धुआं उठ रहा है, लगता है शमशान में अभी कुछ बाकी है,ठोकर खाने के बाद भी, जीने की तमन्ना है दिल में, लगता है कुछ और देखना , इस जहाँ में अभी बाकी है, लुटने के बाद भी, लूट रहे है हमें सभी, लगता है ,… Continue reading Hindi Poetry : Smoke from the Heart.

Poetry

Hindi Poetry : Book of Heart

  दिल की किताब के पन्ने पन्ने कर के, वोह बनते रहे अनजान लोगो, खून उसने हमारे अरमानो का किया , आ गया हम पर कतल का इलज़ाम लोगो, घुमते रहे वोह डाल कर गले में बाहें हमारी, आ कर कहते की, तेरे इश्क ने कर दिया बदनाम लोगो, बेवफा की उपाधी बक्श के हमें,… Continue reading Hindi Poetry : Book of Heart

PowerShell

set Internet Explorer Home Page using Powershell.

Hi, Sometime in scripts or or in login scripts we want to set a users Internet Explorer home page to our Intranet site or to some other specific URL. This became very handy and useful some times. the code is below.   $myURL = “http://microsoft.com” set-ItemProperty -Path ‘HKCU:\Software\Microsoft\Internet Explorer\main’ -Name “Start Page” -Value $myURL In… Continue reading set Internet Explorer Home Page using Powershell.

Active Directory · PowerShell

Powershell and Active Directory : Find empty Active Directory Groups using Powershell.

Hi Everyone. Finally i come back to India and it is always love to be at home. My today’s task was to create a list of all empty active directory groups, all groups those are not having any members. As you know, i don’t like to do the manual tasks, so i decided to use… Continue reading Powershell and Active Directory : Find empty Active Directory Groups using Powershell.

PowerShell

Powershell Script : Get the file and Product version of Ms office Applications.

Hi, I hope you guys are doing good. My last two months were very busy, that why i was not able to post any article. I apologize for that.   Last week Microsoft has release few mandatory ms office update. That update was crucial for outlook users, before apply ms office updates, we need to… Continue reading Powershell Script : Get the file and Product version of Ms office Applications.