From 5fd52e0648dcb7ab3bfc4b31ed172d0e3b381ee4 Mon Sep 17 00:00:00 2001 From: Markus Fleschutz Date: Thu, 4 Nov 2021 15:07:07 +0100 Subject: [PATCH] Add find-android-phone.ps1 --- Scripts/find-android-phone.ps1 | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100755 Scripts/find-android-phone.ps1 diff --git a/Scripts/find-android-phone.ps1 b/Scripts/find-android-phone.ps1 new file mode 100755 index 00000000..6efadf4a --- /dev/null +++ b/Scripts/find-android-phone.ps1 @@ -0,0 +1,15 @@ +<# +.SYNOPSIS + Opens Google Find My Device +.DESCRIPTION + This script launches the Web browser with the Google Find My Device website. +.EXAMPLE + PS> ./open-android-phone +.NOTES + Author: Markus Fleschutz · License: CC0 +.LINK + https://github.com/fleschutz/PowerShell +#> + +& "$PSScriptRoot/open-browser.ps1" "https://www.google.com/android/find" +exit 0 # success