Compare commits

...

4 Commits

Author SHA1 Message Date
ff4e71dbde Nothing Major 2024-05-16 19:20:03 -05:00
0987e0fbbf Planned Features Updated 2024-05-15 09:39:49 -05:00
6fa9d82780 Visual Studio Added to Base 2024-05-15 09:39:40 -05:00
37b10d439c Removed some comments 2024-05-14 19:38:21 -05:00
2 changed files with 14 additions and 21 deletions

View File

@ -31,5 +31,12 @@ You'll get 5 menu options. Use the ones that make sense.
## Planned Features ## ## Planned Features ##
Install NFS Client features * Install NFS Client features
Map my typical network driver? * Map my typical network driver?
* Create SSH KEY
* Start SSH Agent
* Open notepad with instructions to where to put ssh key, possibly log as well?
* .alias file created and filled with some things?
* Syu
* Touch
* Other Linux type mappings?

View File

@ -63,27 +63,11 @@ function Update-Profile {
$URL="https://git.theflyingfool.com/theflyingfool/Win_Setup/raw/branch/main/CopyFromFile.txt" $URL="https://git.theflyingfool.com/theflyingfool/Win_Setup/raw/branch/main/CopyFromFile.txt"
$PATH="$PWD\CopyFromFile.txt" $PATH="$PWD\CopyFromFile.txt"
if (-not (Test-Path ./CopyFromFile.txt)) { (New-Object System.Net.WebClient).DownloadFile($URL, $PATH) } if (-not (Test-Path ./CopyFromFile.txt)) { (New-Object System.Net.WebClient).DownloadFile($URL, $PATH) }
# Get-Content -Path $PROFILE
$CheckString = Get-Content -Path .\CopyFromFile.txt $CheckString = Get-Content -Path .\CopyFromFile.txt
if (-not(Select-String -Quiet -Path $PROFILE -Pattern $CheckString)) {Get-Content -Path .\CopyFromFile.txt | Add-Content -Path $PROFILE} if (-not(Select-String -Quiet -Path $PROFILE -Pattern $CheckString)) {Get-Content -Path .\CopyFromFile.txt | Add-Content -Path $PROFILE}
# Get-Content -Path $PROFILE
#>
<#
Write-Output '
Register-ArgumentCompleter -Native -CommandName winget -ScriptBlock {
param($wordToComplete, $commandAst, $cursorPosition)
[Console]::InputEncoding = [Console]::OutputEncoding = $OutputEncoding = [System.Text.Utf8Encoding]::new()
$Local:word = $wordToComplete.Replace('"', '""')
$Local:ast = $commandAst.ToString().Replace('"', '""')
winget complete --word="$Local:word" --commandline "$Local:ast" --position $cursorPosition | ForEach-Object {
[System.Management.Automation.CompletionResult]::new($_, $_, 'ParameterValue', $_)
}
}
}' >> $PROFILE
#>
} }
do { do {
@ -119,6 +103,7 @@ do {
@{name = 'Microsoft.WindowsTerminal'}, @{name = 'Microsoft.WindowsTerminal'},
@{name = 'Microsoft.PowerToys' }, @{name = 'Microsoft.PowerToys' },
@{name = 'Git.Git' }, @{name = 'Git.Git' },
@{name =' ApacheFriends.Xampp.8.2'},
@{name = 'Google.Chrome' }, @{name = 'Google.Chrome' },
@{name = 'TorProject.TorBrowser'}, @{name = 'TorProject.TorBrowser'},
@{name = 'Google.GoogleDrive' }, @{name = 'Google.GoogleDrive' },
@ -132,9 +117,10 @@ do {
@{name = 'PointPlanck.FileBot' }, @{name = 'PointPlanck.FileBot' },
@{name = 'Oracle.VirtualBox' }, @{name = 'Oracle.VirtualBox' },
@{name = 'NordSecurity.NordVPN' }, @{name = 'NordSecurity.NordVPN' },
# @{name = 'Facebook.Messenger' }, # Cant find via winget anymore? @{name = '9wzdncrf0083'}, #Facebook messenger
@{name = 'Microsoft.Office' }, @{name = 'Microsoft.Office' },
@{name = 'Malwarebytes.Malwarebytes '} @{name = 'Malwarebytes.Malwarebytes '},
@{name = 'Google.AndroidStudio'}
) )
InstallTheApps $Apps InstallTheApps $Apps