I can get the last time a patch was applied. What I need is this info for ALL servers.

Getting the last time a server was patched is a simple, single line of PowerShell:
     get-hotfix -computername seadcweb10 | sort InstalledOn | select -last 1
What I need is to get a list of *all* the servers in Active Directory, and get this information for each.
I've tried variations of foreach , but I get errors.
foreach ( $p in Get-ADComputer -Filter 'OperatingSystem -like "Windows *Server*"' ) { get-hotfix -computername $p.Name | select -last 1 }
Get-HotFix : The RPC server is unavailable. (Exception from HRESULT: 0x800706BA)
At line:1 char:97
+ foreach ( $p in Get-ADComputer -Filter 'OperatingSystem -like "Windows *Server*"' ) { get-hotfix <<<<  -computername
$p.Name | select -last 1 }
    + CategoryInfo          : NotSpecified: (:) [Get-HotFix], COMException
    + FullyQualifiedErrorId : System.Runtime.InteropServices.COMException,Microsoft.PowerShell.Commands.GetHotFixCommand
What am I doing wrong?

Hi
The RPC server is unavailable
This error  comes when any server is not pingable.
Make sure you are able to ping to all server from the server you are running the script.
Then give a try to below script :
foreach ( $p in Get-ADComputer -Filter {OperatingSystem -like "Windows *Server*"})
get-hotfix -computername $p.Name | select -last 1
MCITP - Exchange 2010 | MCITP - Windows Server 2008 R2

Similar Messages

  • How to get the last time a record was modified or created ?

    Is there a way (hidden system fields for example, system view, other ?) to get the last time a record of a table was modified or the date it was created.
    Thanks for any help.
    Stiphane CAMPION

    blarman74 wrote:
    I know I could do this with a trigger, but I was wondering if there is a data dictionary view I can query to find the date/time a table was last updated. What I have is a table that is constantly getting hammered with new data being uploaded from a third party. We need to keep close tabs to verify that this datafeed is constantly running and bringing in new data. Because the data that comes in comes from multiple timezones and there are hundreds of lines, our attempts at monitoring by just looking at the data leave something to be desired.
    Any ideas?refer this links
    How to find Last modified/updated time of a particular table
    http://asktom.oracle.com/pls/asktom/f?p=100:11:0::::P11_QUESTION_ID:1590655700346557237
    Thanks

  • HT1212 If I never synced to itunes and I restore the device. Will I lose unstored data? How can I check to see the last time my phone was backed up if I forgot the passcode to my phone?

    If I never synced to itunes and I restore the device. Will I lose unstored data? How can I check to see the last time my phone was backed up if I forgot the passcode to my phone?

    If you can't remember your passcode, you'll need to restore your phone.  If you never synched to iTunes, all data on your phone will be erased.  No way around this.

  • When was the last time a program was run?

    Experts, is there a way to know when was the last time a program was run (particularly, Z Program). We are trying to identify obsolete programs and avoid working on those programs that weren't touched for more than 3 years during our next upgrade. How can I find this? Any suggestion would be highly appreciated.
    Thank you.

    Hi,
    One way is to check TRDIR table(se11/se16) and display it. In the next screen once you will get 'Data Browser Table TRDIR' selection screen. There either you put the individual 'Z' program name in the 'Name' field & execute it or for all multiple entries execute it.
    Once you execute it with the particular Z prog. name then you will get the required details like CDAT(Created on),UNAM(Last changed by),UDAT(Changed On),SDATE(Standard selection screen generation: Date),IDATE(Selection screen generation: Date) etc.
    Hope this can help you.

  • HT201269 How do I see the last time my phone was backed up?

    My iphone has gone dark. I was planning on getting a new phone but I can't turn my old phone on to transfer data. How can I see the last time my phone was back up?

    If you back up to iTunes, open iTunes on your computer.  Go to Preferences (from the leftmost item in iTunes' menu bar), then choose "Devices".  The backup time will be shown there.
    If you back up to iCloud, you would be able to see it on your iPhone, but since you can't turn it on, I don't think there is another way to find it.

  • The last time an index was used

    Hi to all, 
    I would like to know, if there is a way of knowing  the last time an index was used, or what indexes have never been used.
    Regards
    Eduardo Barrios
    Compañía Cervecera de Canarias S.A.
    Tfno.     922 568 246
    Fax.      922 670 600
    Correo   [email protected]

    Hi Eduardo,
    reading through the updates from Thomas and Volker, I was wondering if there was a bug in i5/OS that causes the "Last used date" information in the file description not to be updated properly for indexes. If you have the plan cache dump or database monitor active (i.e. quite current data in ST04), you could do the following to find out if indexes have been used by the SAP system without a proper update in the file description:
    1. List all indexes into a temporary output file:
        DSPFD FILE(R3<sid>DATA/ALL) TYPE(MBR) OUTPUT(*OUTFILE)
              FILEATR(*LF) OUTFILE(QTEMP/DSPFD)
    2. Compare output with database monitor data using STRSQL or SQLUTIL:
        SELECT T1.MBFILE, T1.MBUDAT, T2.QQTIME, T2.QQLIFN
          FROM QTEMP/DSPFD T1, R3<sid>DATA/SQ3001_DB4 T2,
               R3<sid>DATA/SYSINDEXES T3
         WHERE T1.MBFILE = T3.SYSTEM_INDEX_NAME
           AND T3.INDEX_NAME = T2.QQLIFN
         ORDER BY T1.MBUDAT
    If you find indexes, where the "Last Used Date" is smaller than the QQTIME value, you know that the
    file statistics are not updated properly. You could then open a PMR at IBM for that.
    On one of our internal systems I did not see a discrepancy, so it seems to me that the information is correct. Volker's experiences could be explained by the fact that indexes are not just used to implement SQL statements, but also for table statistics. I assume that the "Last used date" is not updated when the index was only used to obtain table statistics. With incomplete statistics, the optimizer may choose a different join order or access method, which can result in poor performance. So there is some risk involved when dropping an index that has a very old "Last used date", and you can only decide it by trying (with care!).
    Kind regards,
    Christian Bartels.

  • How to find out when the last time a tcode was run by someone

    Hi Team,
    I am just trying to find out if there is a way to find out when the last time a tcode was run by someone.I mean i need to know when was a certain  tcode was last run.
    Thanks,
    Priyanka

    HI Priyanka
    Another way would be using transaction STAT,enter the t-code you like to monitor.This will provide all details,like user, time etc...
    Hope this will help
    Thanks
    Santosh Kumar

  • How to tell the last time a table was updated

    I know I could do this with a trigger, but I was wondering if there is a data dictionary view I can query to find the date/time a table was last updated. What I have is a table that is constantly getting hammered with new data being uploaded from a third party. We need to keep close tabs to verify that this datafeed is constantly running and bringing in new data. Because the data that comes in comes from multiple timezones and there are hundreds of lines, our attempts at monitoring by just looking at the data leave something to be desired.
    Any ideas?

    blarman74 wrote:
    I know I could do this with a trigger, but I was wondering if there is a data dictionary view I can query to find the date/time a table was last updated. What I have is a table that is constantly getting hammered with new data being uploaded from a third party. We need to keep close tabs to verify that this datafeed is constantly running and bringing in new data. Because the data that comes in comes from multiple timezones and there are hundreds of lines, our attempts at monitoring by just looking at the data leave something to be desired.
    Any ideas?refer this links
    How to find Last modified/updated time of a particular table
    http://asktom.oracle.com/pls/asktom/f?p=100:11:0::::P11_QUESTION_ID:1590655700346557237
    Thanks

  • Is there a way to see the last time my ipad was online?

    I lost my ipad and I can't use the locate my iphone app because the ipad is offline.  I am wondering if there is a way to see when the last time it was connected to the internet and where it was the last time it was connected. 

    No.  Find My iPad doesn't keep any history of that.  Also, it it's a wifi-only model, it will only be online if it is connected to a known wifi network.  The best strategy is to put it in lost mode and change your iCloud password so someone can't take over your account.
    You might also want to read this: http://support.apple.com/kb/HT5668.

  • When the last time a datafile was used

    Hello.
    This is from Solaris box, running Oracle 8.1.7.4.0.
    There are two datafiles, actually three, that were created for three tablespaces. These in total take up more than 3G on the server and space is at a premium.
    I suspect that these files can be removed but I need to understand when the last time they were used and if it is safe to remove them.
    Each of these files was created as 800M files and each has 799.99M remaining.
    Thank you for any advice.
    DA

    it doeasn't help when you use ls -l, because the system checkpoint will upate all the datafiles(except the readonly ones)
    SQL> create tablespace myts datafile '/tmp/myts.dbf' size 50M;
    Tablespace created.
    SQL> create table mytable1 (col1 date, col2 number) tablespace myts;
    Table created.
    SQL> !ls -ltr /tmp/*.dbf
    -rw-r----- 1 oracle oinstall 52436992 Apr 18 09:22 /tmp/myts.dbf
    SQL> alter system switch logfile;
    System altered.
    SQL> !ls -ltr /tmp/*.dbf
    -rw-r----- 1 oracle oinstall 52436992 Apr 18 09:22 /tmp/myts.dbf
    SQL> alter system checkpoint;
    System altered.
    SQL> !ls -ltr /tmp/*.dbf
    -rw-r----- 1 oracle oinstall 52436992 Apr 18 09:24 /tmp/myts.dbf
    if you want to drop the tablespace, just simply run the following command. it should be successful if your TS is empty:
    SQL> drop tablespace myts;
    drop tablespace myts
    ERROR at line 1:
    ORA-01549: tablespace not empty, use INCLUDING CONTENTS option
    SQL> select segment_name,segment_type from dba_segments where tablespace_name='MYTS';
    SEGMENT_NAME
    SEGMENT_TYPE
    MYTABLE1
    TABLE
    SQL> drop table MYTABLE1 purge;
    Table dropped.
    SQL> drop tablespace myts;
    Tablespace dropped.
    Or you can run the following command directly if you confirm to drop everything in this TS:
    drop tablespace myts INCLUDING CONTENTS ;
    HTH
    Scott

  • HT1414 How can i find out the last time my iphone was restored?

    Hey, i need help on how to find out when the last few times my iphone was restored.
    Thanks

    This is a strange question, not sure where you are going with this one. On the computer you Restored with, iTunes requests to back up the iPhone. These are time stamped and stored on the computer. You can use iTunes to search the list of back ups of your iPhone and see the dates, so you can at least see the dates of the back ups.

  • Table name for Info-record where i can get the last changed date and user

    Using ME12, i have changed the price of the info record i want to get the who was the user and changed date...
    I had check in EINA EINE but i couldnt find out please anybody Please help me out by providing solution for this??

    Hi
    If at the data element level the field for which you want to know the old and new fields  the option of CHANGE DOCUMENT option must be  enabled ,then you can find the old and new values in the
    CDHDR -
    Change document header
    CDPOS -
    Change document items.
    Regards
    Pavan

  • How to know the last time a table was used?

    I was trying to find a log or something that can tell me when and who was the last one/s that used a table.
    Could someone help me?
    thanks

    How can I activate the auditing? http://download-east.oracle.com/docs/cd/B19306_01/network.102/b14266/auditing.htm#i1011984
    Daljit Singh

  • What is the last time my account was acc

    I need help my laptop was stolen and I need to know if any one has been using my account in the last mounth I just got billed on my card for

    you may need to contact customer service, here's how
    http://community.skype.com/t5/General-Discussion/H​ow-to-Contact-Skype-Customer-Service/m-p/431911
    for the meantime, it may be also advisable to change your account password so no one can access your Skype account.
    IF YOU FOUND OUR POST USEFUL THEN PLEASE GIVE "KUDOS". IF IT HELPED TO FIX YOUR ISSUE PLEASE MARK IT AS A "SOLUTION" TO HELP OTHERS. THANKS!
    ALTERNATIVE SKYPE DOWNLOAD LINKS | HOW TO RECORD SKYPE VIDEO CALLS | HOW TO HANDLE SUSPICIOS CALLS AND MESSAGES
    SEE MORE TIPS, TRICKS, TUTORIALS AND UPDATES in
    | skypefordummies.blogspot.com | 

  • Determining the last time an appointment was modified

    Does any one know how to determine the date and time an appointment was modified. I do not see any thing for this in the iCal format. I have looked in the CAPI documentation but must be missing it.
    Thanks

    Hello,
    I assume the property you are referring to is LAST-MODIFIED.
    Although, currently there is a bug associated with that property, where it is not returned by the sdk.
    For internal reference, the bug id is 4475645.
    Thanks,
    Jean-Philippe

Maybe you are looking for