├── .github └── workflows │ └── build_and_release.yml ├── .gitignore ├── README.md └── get_msft_ips.ps1 /.github/workflows/build_and_release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aalex954/MSFT-IP-Tracker/HEAD/.github/workflows/build_and_release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | *.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aalex954/MSFT-IP-Tracker/HEAD/README.md -------------------------------------------------------------------------------- /get_msft_ips.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aalex954/MSFT-IP-Tracker/HEAD/get_msft_ips.ps1 --------------------------------------------------------------------------------