1 2 3 4 5 6 7 8 9 |
Start-Process "https://www.google.com/search?q=cotizaci%C3%B3n+ibex&oq=cotizaci%C3%B3n+ibex" Start-Sleep -Seconds 10 $path=(Get-Date).ToString("yyyyMMddhhmm")+"ibex.bmp" $b=New-Object System.Drawing.Bitmap([System.Windows.Forms.Screen]::PrimaryScreen.Bounds.Width, [System.Windows.Forms.Screen]::PrimaryScreen.Bounds.Height) $g=[System.Drawing.Graphics]::FromImage($b) $g.CopyFromScreen((New-Object System.Drawing.Point(0,0)), (New-Object System.Drawing.Point(0,0)), $b.Size) $g.Dispose() $b.Save($path,'Bmp') Start-Sleep -Seconds (60*20) |