Re: [scripting] Re: powershell script to pull the machine last rebooted information from active directory

2016-12-02 Thread Isaac Holmes
Kevin -

I don't believe any of the information you want is stored directly in AD,
you would have to query the machine via remote WMI or look for it in SCCM
or other management tools.

On Fri, Dec 2, 2016 at 1:09 PM, It's Mike Mitchell <its.m...@shaw.ca> wrote:

>
>
> --
>
> Some powershell fragments…
>
>
>
> Machine On line?
>
> test-connection $computername -erroraction silentlyContinue -count 1
>
>
>
> Last reboot…
>
> $LastBoot=[System.Management.ManagementDateTimeConverter]::ToDateTime((Get-WmiObject
> win32_operatingsystem -ComputerName $computername).lastbootuptime)
>
>
>
> Last logged in user… I’d consider examining the date stamps on
> $computename\C$\users\*\NTUSER.DAT and choosing the most recent one
>
>
>
>
>
> *From:* listsad...@lists.myitforum.com [mailto:listsadmin@lists.
> myitforum.com] *On Behalf Of *Kevin Ray
> *Sent:* Friday, December 2, 2016 8:34 am
> *To:* scripting@lists.myitforum.com
> *Cc:* ms...@lists.myitforum.com
> *Subject:* [scripting] Re: powershell script to pull the machine last
> rebooted information from active directory
>
>
>
> But instead of sccm any way to get from AD using scripts
>
> On Friday, December 2, 2016, Daniel Ratliff <dratl...@humana.com> wrote:
>
> Sorry, v_r_system not v_r_system_valid. Only active machines show up in
> v_r_system_valid.
>
>
>
> *Daniel Ratliff*
>
> *Technology Architect *| *Client Innovation Solutions | Information
> Technology Infrastructure (ITI)*
>
> *T* 502.476.9976 <(502)%20476-9976> | dratl...@humana.com
>
>
>
> *From:* listsad...@lists.myitforum.com [mailto:listsadmin@lists.
> myitforum.com] *On Behalf Of *Daniel Ratliff
> *Sent:* Friday, December 02, 2016 10:52 AM
> *To:* ms...@lists.myitforum.com; scripting@lists.myitforum.com
> *Subject:* RE: [mssms] powershell script to pull the machine last
> rebooted information from active directory
>
>
>
> LastBootUpTime is stored in win32_operatingsystem in WMI or
> v_gs_operating_system in SQL.
>
>
>
> Last Logged on User name, check these.
>
> http://www.enhansoft.com/blog/where-to-find-user-name-data-
> in-configuration-manager-part-1
>
> http://www.enhansoft.com/blog/where-to-find-user-name-data-
> in-configuration-manager-part-2
>
>
>
> Machine status is under v_r_system_valid for inactive 0 or 1.
>
>
>
> *Daniel Ratliff*
>
>
>
> *From:* listsad...@lists.myitforum.com [mailto:listsadmin@lists.
> myitforum.com] *On Behalf Of *Kevin Ray
> *Sent:* Friday, December 02, 2016 10:41 AM
> *To:* mssms <ms...@lists.myitforum.com>; scripting@lists.myitforum.com
> *Subject:* [mssms] powershell script to pull the machine last rebooted
> information from active directory
>
>
>
> Hi All,
>
>
>
> I have 100 machines on text file and looking to get the last rebooted date
> , last logged on user name and machine status (like active or inactive)
> export to csv file
>
>
>
> Any help
>
> Kevin
>
>
>
>
>
>
>
>
> The information transmitted is intended only for the person or entity to
> which it is addressed
> and may contain CONFIDENTIAL material. If you receive this
> material/information in error,
> please contact the sender and delete or destroy the material/information.
>
>
>
>
> The information transmitted is intended only for the person or entity to
> which it is addressed
> and may contain CONFIDENTIAL material. If you receive this
> material/information in error,
> please contact the sender and delete or destroy the material/information.
>
>
>
>
>
>
>


-- 

Isaac Holmes
IT Engineering Specialist

University of Notre Dame
320 IT Center
Notre Dame, IN 46556

(574) 631-3254





Fwd: [scripting] Re: powershell script to pull the machine last rebooted information from active directory

2016-12-02 Thread It's Mike Mitchell
 

- Original Message -




Some powershell fragments… 
  
Machine On line?  
test-connection $computername -erroraction silentlyContinue -count 1 
  
Last reboot… 
$LastBoot=[System.Management.ManagementDateTimeConverter]::ToDateTime((Get-WmiObject
 win32_operatingsystem -ComputerName $computername).lastbootuptime) 
  
Last logged in user… I’d consider examining the date stamps on 
$computename\C$\users\*\NTUSER.DAT and choosing the most recent one 
  
  
From: listsad...@lists.myitforum.com [mailto:listsad...@lists.myitforum.com] On 
Behalf Of Kevin Ray 
Sent: Friday, December 2, 2016 8:34 am 
To: scripting@lists.myitforum.com 
Cc: ms...@lists.myitforum.com 
Subject: [scripting] Re: powershell script to pull the machine last rebooted 
information from active directory 
  
But instead of sccm any way to get from AD using scripts 

On Friday, December 2, 2016, Daniel Ratliff < dratl...@humana.com > wrote: 




Sorry, v_r_system not v_r_system_valid. Only active machines show up in 
v_r_system_valid. 
  

Daniel Ratliff 
Technology Architect | Client Innovation Solutions | Information Technology 
Infrastructure (ITI) 
T 502.476.9976 | dratl...@humana.com 
  


From: listsad...@lists.myitforum.com [mailto: listsad...@lists.myitforum.com ] 
On Behalf Of Daniel Ratliff 
Sent: Friday, December 02, 2016 10:52 AM 
To: ms...@lists.myitforum.com ; scripting@lists.myitforum.com 
Subject: RE: [mssms] powershell script to pull the machine last rebooted 
information from active directory 
  
LastBootUpTime is stored in win32_operatingsystem in WMI or 
v_gs_operating_system in SQL. 
  
Last Logged on User name, check these. 
http://www.enhansoft.com/blog/where-to-find-user-name-data-in-configuration-manager-part-1
 
http://www.enhansoft.com/blog/where-to-find-user-name-data-in-configuration-manager-part-2
 
  
Machine status is under v_r_system_valid for inactive 0 or 1. 
  
Daniel Ratliff 
  
From: listsad...@lists.myitforum.com [ mailto:listsad...@lists.myitforum.com ] 
On Behalf Of Kevin Ray 
Sent: Friday, December 02, 2016 10:41 AM 
To: mssms < ms...@lists.myitforum.com >; scripting@lists.myitforum.com 
Subject: [mssms] powershell script to pull the machine last rebooted 
information from active directory 
  
Hi All, 

  

I have 100 machines on text file and looking to get the last rebooted date , 
last logged on user name and machine status (like active or inactive) export to 
csv file 

  

Any help 

Kevin 

  

  
  

The information transmitted is intended only for the person or entity to which 
it is addressed 
and may contain CONFIDENTIAL material. If you receive this material/information 
in error, 
please contact the sender and delete or destroy the material/information. 
  

The information transmitted is intended only for the person or entity to which 
it is addressed 
and may contain CONFIDENTIAL material. If you receive this material/information 
in error, 
please contact the sender and delete or destroy the material/information. 
  


  





[scripting] Re: powershell script to pull the machine last rebooted information from active directory

2016-12-02 Thread Kevin Ray
But instead of sccm any way to get from AD using scripts

On Friday, December 2, 2016, Daniel Ratliff  wrote:

> Sorry, v_r_system not v_r_system_valid. Only active machines show up in
> v_r_system_valid.
>
>
>
> *Daniel Ratliff*
>
> *Technology Architect *| *Client Innovation Solutions | Information
> Technology Infrastructure (ITI)*
>
> *T* 502.476.9976 | dratl...@humana.com
> 
>
>
>
> *From:* listsad...@lists.myitforum.com
>  [mailto:
> listsad...@lists.myitforum.com
> ] *On
> Behalf Of *Daniel Ratliff
> *Sent:* Friday, December 02, 2016 10:52 AM
> *To:* ms...@lists.myitforum.com
> ;
> scripting@lists.myitforum.com
> 
> *Subject:* RE: [mssms] powershell script to pull the machine last
> rebooted information from active directory
>
>
>
> LastBootUpTime is stored in win32_operatingsystem in WMI or
> v_gs_operating_system in SQL.
>
>
>
> Last Logged on User name, check these.
>
> http://www.enhansoft.com/blog/where-to-find-user-name-data-
> in-configuration-manager-part-1
>
> http://www.enhansoft.com/blog/where-to-find-user-name-data-
> in-configuration-manager-part-2
>
>
>
> Machine status is under v_r_system_valid for inactive 0 or 1.
>
>
>
> *Daniel Ratliff*
>
>
>
> *From:* listsad...@lists.myitforum.com
>  [
> mailto:listsad...@lists.myitforum.com
> ] *On
> Behalf Of *Kevin Ray
> *Sent:* Friday, December 02, 2016 10:41 AM
> *To:* mssms  >;
> scripting@lists.myitforum.com
> 
> *Subject:* [mssms] powershell script to pull the machine last rebooted
> information from active directory
>
>
>
> Hi All,
>
>
>
> I have 100 machines on text file and looking to get the last rebooted date
> , last logged on user name and machine status (like active or inactive)
> export to csv file
>
>
>
> Any help
>
> Kevin
>
>
>
>
>
>
>
>
> The information transmitted is intended only for the person or entity to
> which it is addressed
> and may contain CONFIDENTIAL material. If you receive this
> material/information in error,
> please contact the sender and delete or destroy the material/information.
>
>
>
> The information transmitted is intended only for the person or entity to
> which it is addressed
> and may contain CONFIDENTIAL material. If you receive this
> material/information in error,
> please contact the sender and delete or destroy the material/information.
>
>




[scripting] Re: powershell script to pull the machine last rebooted information from active directory

2016-12-02 Thread Kevin Ray
Thanks but some reason, for this 100 machine i can't go eith sccm.i want to
check the inventory from Active Directory... So looking for powershell
script..

On Friday, December 2, 2016, Daniel Ratliff  wrote:

> LastBootUpTime is stored in win32_operatingsystem in WMI or
> v_gs_operating_system in SQL.
>
>
>
> Last Logged on User name, check these.
>
> http://www.enhansoft.com/blog/where-to-find-user-name-data-
> in-configuration-manager-part-1
>
> http://www.enhansoft.com/blog/where-to-find-user-name-data-
> in-configuration-manager-part-2
>
>
>
> Machine status is under v_r_system_valid for inactive 0 or 1.
>
>
>
> *Daniel Ratliff*
>
>
>
> *From:* listsad...@lists.myitforum.com
>  [mailto:
> listsad...@lists.myitforum.com
> ] *On
> Behalf Of *Kevin Ray
> *Sent:* Friday, December 02, 2016 10:41 AM
> *To:* mssms  >;
> scripting@lists.myitforum.com
> 
> *Subject:* [mssms] powershell script to pull the machine last rebooted
> information from active directory
>
>
>
> Hi All,
>
>
>
> I have 100 machines on text file and looking to get the last rebooted date
> , last logged on user name and machine status (like active or inactive)
> export to csv file
>
>
>
> Any help
>
> Kevin
>
>
>
>
>
>
>
> The information transmitted is intended only for the person or entity to
> which it is addressed
> and may contain CONFIDENTIAL material. If you receive this
> material/information in error,
> please contact the sender and delete or destroy the material/information.
>
>