rocky,
I cranked this out just for you.
Run the enclosed script and upload the resulting RestorePoints.txt (which will appear on your desktop) here. Thanks.
# **********************INSTRUCTIONS**************************
# STEP 1 ** RUN POWERSHELL AS ADMINISTRATOR ******************
# ************************************************************
#
# WIN key | type POWERSHELL | do NOT hit ENTER |
# in the PROGRAMS list, right-click on WINDOWS POWERSHELL |
# choose "Run as administrator" |
# Click on the YES button (if such appears)
#
# WIN key = key with Microsoft log on top
#
# for the guru:
# WIN | type POWERSHELL | CTRL+SHIFT+ENTER key combo | ALT+Y keycombo
# ************************************************************
# STEP 2 ** COPY AND PASTE ***********************************
# ************************************************************
#
# COPY the script using CTRL+C,
# COPY every line of script down thru both EXIT statements
#
# PASTE into Powershell
#----Right-Click at the PowerShell Prompt
#----(Ctrl+V does not work)
#
# Start copying with first script line without a # at start of the line
# Note: Actually, you can paste the entire file if you rather
#-------Lines starting with a # are ignored by PowerShell
# ************************************************************
# STEP 3 ** SCRIPT OUTPUT & SCRIPT PURPOSE *******************
# ************************************************************
# --The script output and purpose is given at the very front of the script
#
# --The script output and purpose is given at the very front of the script
#
# ************************************************************
# ***************** NOTE - POWERSHELL VERSION*****************
# if you receive this error msg:
#--The system can not find the path specified
# you may need to update your PowerShell
# you must be using Powershell 2.0 or later.
#
# To determine your Powershell version:
#---Run PowerShell
#---enter $host.version
#---you should see at least:
# Major Minor Build Revision
# ----- ----- ----- --------
# 2......0......-1.....-1
#
# If you do not see the above, update your Vista/Win 7.
# ************************************************************
# *************** NOTE - EXECUTION POLICY*********************
# If you haven't set the execution policy, you may need to:
#---Run PowerShell
#---enter SET-EXECUTIONPOLICY -EXECUTIONPOLICY REMOTESIGNED
# ************************************************************
Script:
function get-ID {
param ([string]$title, [int]$arraycnt, [int]$arrayndx)
$id = " " + $title + " "
If ($arraycnt -eq 1) {} else {$id = $id + [string]$arrayndx + " "}
$id }
function get-title { param ([string]$id, $nrhashes = 51)
$hashes = ([int]($nrhashes - $id.length)/2)
For ($j=0; $j -lt $hashes; $j++){$hashstr += "#" }
$title = $hashstr + $id + $hashstr
If ($title.length -le $nrhashes) {$title += "#"}
$title }
$linelen = 130
$nrhashes = 51
$NrSterne = $linelen - $nrhashes
$sterne = ""
For ($i=1; $i -le $nrsterne; $i++) {$sterne += "*"}
$obj = New-Object PSObject
$ARR = @(GET-COMPUTERRESTOREPOINT | Sort -descending CreationTime)
$cnt = $arr.count
for ($i=1; $i -le $cnt; $i++) {
$d = $arr[$i -1]
$id = get-id "RESTORE POINT" $cnt $i
$obj | add-member -membertype noteproperty -name ( Get-title $Id ) -value $sterne
$obj | add-member -membertype noteproperty -name ($ID + "Creation Time") -value($d.converttodatetime($d.creationtime))
$obj | add-member -membertype noteproperty -name ($ID + "Descripton") -value($d.description)
$obj | add-member -membertype noteproperty -name ($ID + "Event Type") -value($d.EventType)
$obj | add-member -membertype noteproperty -name ($ID + "Restore Point Type") -value($d.RestorePointType)
$obj | add-member -membertype noteproperty -name ($ID + "Sequence Number") -value($d.sequencenumber)
}
$obj > $env:\userprofile\desktop\restorepoints.txt
EXIT
EXIT