Skip to content

Commit 6299c38

Browse files
author
Jimmy Briggs
committed
TXT Notes
1 parent 2343350 commit 6299c38

File tree

3 files changed

+88
-0
lines changed

3 files changed

+88
-0
lines changed

Notes/Mount-ISO-Image.txt

+8
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
Clear-Disk -Number 3 -RemoveData -Confirm:$false -PassThru
2+
New-Partition -DiskNumber 3 -UseMaximumSize -AssignDriveLetter | Format-Volume -FileSystem NTFS
3+
4+
Mount-DiskImage -ImagePath "F:\System\Windows\ISO\Windows10_InsiderPreview_Client_x64_en-us_21354.iso"
5+
6+
Get-CimInstance Win32_LogicalDisk | ?{ $_.DriveType -eq 5} | select DeviceID
7+
8+
xcopy H:\ G:\ /e

Notes/Useful-DISM.txt

+14
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
:: Clean up the WinSxS folder (useful after each Win update)
2+
Dism.exe /online /Cleanup-Image /StartComponentCleanup /ResetBase
3+
4+
5+
:: Opens cleanmgr (windows own CCleaner solution) with all hidden options
6+
%SystemRoot%\System32\Cmd.exe /c Cleanmgr /sageset:65535 & Cleanmgr /sagerun:65535
7+
8+
9+
:: Check online the status of the current WinImage
10+
Dism.exe /online /Cleanup-Image /StartComponentCleanup /restorehealth
11+
12+
13+
:: Cleans the WinSxS folder
14+
Dism.exe /online /cleanup-image /startcomponentcleanup

Notes/sites.txt

+66
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,66 @@
1+
# PowerShell
2+
https://4sysops.com/tag/powershell
3+
https://arcanecode.com
4+
https://foxdeploy.com
5+
https://www.gngrninja.com
6+
https://www.itprotoday.com
7+
https://www.madwithpowershell.com
8+
http://www.outsidethebox.ms
9+
https://p0w3rsh3ll.wordpress.com
10+
https://powershellexplained.com
11+
https://vmblog.ru
12+
https://windowsnotes.ru
13+
http://winitpro.ru
14+
https://kazunposh.wordpress.com
15+
https://theitbros.com
16+
https://coolcode.ru/powershell/
17+
http://blog.dbsnet.fr
18+
https://jdhitsolutions.com/blog/category/powershell
19+
https://community.idera.com/database-tools/powershell/powertips/
20+
https://vacuumbreather.com
21+
https://blogs.msmvps.com/richardsiddaway/category/powershell
22+
https://fixmypc.ru/subcategory/powershell/
23+
https://winintro.ru
24+
https://www.undocumented-features.com/category/scripting
25+
https://administra.top/category/powershell/
26+
https://blog.it-kb.ru/tag/powershell/
27+
https://michael-casey.com
28+
https://www.itdroplets.com/category/powershell/
29+
https://sohabr.net/habr/post/304420/
30+
https://vimalshekar.github.io
31+
https://smsagent.blog/category/powershell/
32+
http://www.systanddeploy.com/search?max-results=10&q=+
33+
https://petri.com/category/powershell
34+
https://evotec.xyz/category/powershell
35+
https://sid-500.com/category/powershell/
36+
37+
# CheetSheets
38+
https://packetlife.net/library/cheat-sheets/
39+
https://www.malwarearchaeology.com/cheat-sheets
40+
41+
# Penetration
42+
https://xz.aliyun.com/t/6498
43+
https://www.malwarearchaeology.com/logging
44+
https://schneegans.de/windows/process-audit/
45+
https://pennprovenance.net/index.php?n=Tracker.Config
46+
https://www.eventsentry.com/blog/2018/01/powershell-p0wrh11-securing-powershell.html
47+
https://www.eventsentry.com/blog/2018/01/powershell-pw3rh311-detecting-preventing-powershell-attacks.html
48+
49+
# Блоки питания
50+
https://docs.google.com/spreadsheets/d/1bEcFiMdLWPtPu3c1JsvsLIbcYANlLUVO1ICQdh-jxsg/htmlview
51+
52+
# Мониторы
53+
https://docs.google.com/spreadsheets/d/1Ej9mOe5NamLldpfyFfXrqvLMZP-aG2Zi1su7QzPRNJY/htmlview
54+
55+
# GitHub Actions
56+
https://help.github.com/en/actions/getting-started-with-github-actions
57+
http://hermit.no/github-actions-including-how-to-build-net-framework-projects/
58+
https://medium.com/@two06/building-tooling-with-github-actions-59401648e61d
59+
https://toastit.dev/2018/12/19/powershell-flavoured-github-actions/
60+
https://dynamicsuser.net/nav/b/demiliani/posts/ci-cd-for-net-with-githhub-actions?pi2732=3
61+
https://blog.ipswitch.com/how-to-build-your-first-github-actions-workflow
62+
https://medium.com/@abhijithbr/who-wants-to-fool-an-ai-anti-virus-9837877dac29
63+
https://stefanstranger.github.io/2020/02/28/PlayingWithGitHubActions/
64+
https://demiliani.com/2019/11/14/ci-cd-for-net-with-githhub-actions/
65+
https://abelsquidhead.com/index.php/2019/09/07/writing-my-first-custom-github-action/
66+
https://rustycrate.ru/обучение/2017/08/20/rust-appveyor.html

0 commit comments

Comments
 (0)