computer-startup-scripts

How to assign computer startup scripts?

1. Open the Group Policy snap-in. 2. In the console tree, click Scripts (Startup/Shutdown). – Where? policy name Policy > Computer Configuration > Windows Settings > Scripts (Startup/Shutdown)or Start the…

Read more »
a-script-to-find-all-users-who-have-not-set-passwords

A script to find all users who have not set passwords

Write a script to find all users who have not set passwords. #!/usr/bin/ruby require “P4” p4 = P4.new p4.parse_forms p4.connect p4.run_users.each do |u| user = p4.fetch_user( u[ “User” ] )…

Read more »
script-to-list-the-clients-in-descending-access-date-order

Script to list the clients in descending access date order

  Write a script to list the clients in descending access date order (for deleting obsolete clients).   #!/usr/bin/ruby require “P4” p4 = P4.new p4.tagged p4.connect clients = p4.run_clients.sort {|a,b|…

Read more »