Git Product home page Git Product logo

misc-powershell-scripts's Introduction

Misc-Powershell-Scripts

Random Tools

misc-powershell-scripts's People

Contributors

dafthack avatar fancysauced avatar luemmelsec avatar romans8 avatar rvrsh3ll avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

misc-powershell-scripts's Issues

Confirmed Success for 2021?

I've been trying to get this to run for a few days, but I am unable to get any errors or commands to report back.

I've been over the code several times but can't find where it's being stopped.

Running: .\Get-BrowserData -Browser All -Datatype History -UserName *****

Only to get a blank readout

Powershell issue

Hello,
Sorry, I am very new to PowerShell. I need this program to remotely check users browsing history at work. I can't seem to get the PowerShell script to work. I saved it as a .ps1 extension but all I get is a blank PowerShell terminal.

Thank you, considering this is probably user error.

Date information

First of all, thanks for the script, it`s working properly.

Second, I would like to know your thoughts on how to get the Date, Hour and the exact link where which website was visited. Just like in the Browser history tab.
image

Get-BrowserData.ps1 Problem Depth - Recursive Workaround for Bookmarks - Latest Chrome

Hi sir,

I've determined the script is not fully functional anymore with the latest version of Chrome regarding fetching the bookmarks. Google Chrome has set the bookmarks based on folders, subfolders, subfolders .children so you cannot fetch them all with your current method. To work around this I've created the following adjustment.
You off course are free to integrate it into your scripts, as it is of much help to me! Thanks in advance.

Adjusted code:
function Get-ChromeBookmarks { $Path = "$Env:systemdrive\Users\$UserName\AppData\Local\Google\Chrome\User Data\Default\Bookmarks" if (-not (Test-Path -Path $Path)) { Write-Verbose "[-] Could not find Chrome Bookmarks for username: $UserName" } else { $Json = Get-Content $Path $Output = $Json | ConvertFrom-Json $Jsonobject1 = $Output.roots.bookmark_bar.children $Jsonobject2 = $Output.roots.bookmark_bar.children.children $Jsonobject3 = $Output.roots.bookmark_bar.children.children.children $Jsonobject4 = $Output.roots.bookmark_bar.children.children.children.children $Jsonobject5 = $Output.roots.bookmark_bar.children.children.children.children.children $Jsonobject6 = $Output.roots.bookmark_bar.children.children.children.children.children.children $JsonObject = $Jsonobject1, $Jsonobject2, $Jsonobject3, $Jsonobject4, $Jsonobject5, $Jsonobject6 $JsonObject | ForEach-Object { New-Object -TypeName PSObject -Property @{ User = $UserName Browser = 'Chrome' DataType = 'Bookmark' Data = $_.item('url') Name = $_.item('name') } } $JsonObject } }

Happy to help out!
Kind regards,
Martijn

Typo in Get-BrowserData.ps1

There's a typo in Get-BrowserData.ps1, in the function Get-ChromeBookmarks. The Json object created to hold the Chrome bookmarks lists the browser as 'Firefox', when it should be 'Chrome'.
capture

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.