參考網址:https://portableapps.com/
大陸網站:https://www.portablesoft.org/
參考網址:Codebug
用powershell 為makecode app 建立捷徑
$TargetPath = "shell:AppsFolder\MicrobitEducationalFounda.196216C47839B_e88r6s0b2swar!App" $ShortcutFile = "$Home\Desktop\MakeCodeAPP.lnk" $WScriptShell = New-Object -ComObject WScript.Shell $Shortcut = $WScriptShell.CreateShortcut($ShortcutFile) $Shortcut.TargetPath = $TargetPath $Shortcut.Save()
get-appxpackage > d:\application_list.txt 可以得到 APP名稱列表
Name : MicrobitEducationalFounda.196216C47839B Publisher : CN=DA0852B7-E38D-4F10-9429-7A96575322FD Architecture : X64 ResourceId : Version : 1.1.0.0 PackageFullName : MicrobitEducationalFounda.196216C47839B_1.1.0.0_x64__e88r6s0b2swar InstallLocation : C:\Program Files\WindowsApps\MicrobitEducationalFounda.196216C47839B_1.1.0.0_x64__e88r6s0b2swar IsFramework : False PackageFamilyName : MicrobitEducationalFounda.196216C47839B_e88r6s0b2swar PublisherId : e88r6s0b2swar IsResourcePackage : False IsBundle : False IsDevelopmentMode : False NonRemovable : False IsPartiallyStaged : False SignatureKind : Store Status : Ok
找到PackageFamilyName : MicrobitEducationalFounda.196216C47839B_e88r6s0b2swar 在後面加上「!App」
@ECHO OFF TITLE 建立 Xshell & Xftp 捷徑 mshta VBScript:Execute("Set a=CreateObject(""WScript.Shell""):Set b=a.CreateShortcut(a.SpecialFolders(""Desktop"") & ""\Xshell6Portable.lnk""):b.TargetPath=""%~dp0Xshell6Portable.exe"":b.WorkingDirectory=""%~dp0"":b.Save:close") mshta VBScript:Execute("Set a=CreateObject(""WScript.Shell""):Set b=a.CreateShortcut(a.SpecialFolders(""Desktop"") & ""\Xftp6Portable.lnk""):b.TargetPath=""%~dp0Xftp6Portable.exe"":b.WorkingDirectory=""%~dp0"":b.Save:close") echo Xshell & Xftp 捷徑已建立 pause
這個檔案必需存成bat檔才能正常執行,複製到CMD的環境執行會發生問題(%~dp0 會發生錯誤)。
快閃人生 【批次檔】%CD% 與 %~dp0
%CD%:Current Directory, 當前工作目錄位置
%~dp0:批次檔存在的目錄位置
關於%~dp0其實是%0參數的衍伸用法(可以使用CALL /?查閱詳細說明)
首先執行下面例子先看看結果:
@ECHO OFF CLS ECHO %%0 = %0 ECHO %%~d0 = %~d0 ECHO %%~p0 = %~p0 ECHO %%~n0 = %~n0 ECHO %%~x0 = %~x0
從CALL /?的說明頁面中, 得知在參數%n(%0, %1, … %9)之間加了波浪符號(~)與相關的修飾字詞後, 就會有擴充的支援。
網址:http://books.gotop.com.tw/download/AEZ020100
Scratch 3.0 多媒體遊戲設計 & Tello無人機 http://gogo123.com.tw/?page_id=10787
https://gogo123.com.tw/scratch-3-0/
參考網址:
https://kknews.cc/zh-tw/code/rygrn8o.html
裝置->插入Guest Additions CD 映像檔
cd /media
執行./VBboxLinuxAdditions.run
重啟後 進入系統設定螢幕解析度
參考網址:https://github.com/Alger23/ubuntu_dayi_for_ibus
下載安裝腳本 $ wget https://raw.githubusercontent.com/Alger23/ubuntu_dayi_for_ibus/master/dayisetup.sh 下載大易三碼字根檔 $ wget https://raw.githubusercontent.com/Alger23/ubuntu_dayi_for_ibus/master/dayi3.cin 執行安裝腳本 $ chmod u+x dayisetup.sh $ sudo ./dayisetup.sh
參考網址:https://github.com/majkinetor/posh/blob/master/MM_Network/Update-Proxy.ps1
# Author: Miodrag Milic <miodrag.milic@gmail.com> # Last Change: 14-Aug-2015. #requires -version 2.0 <# .SYNOPSIS Get or set system proxy properties. .DESCRIPTION This function implements unified method to set proxy system wide settings. It sets both WinINET ("Internet Options" proxy) and WinHTTP proxy. Without any arguments function will return the current proxy properties. To change a proxy property pass adequate argument to the function. .EXAMPLE Update-Proxy -Server "myproxy.mydomain.com:8080" -Override "" -ShowGUI Set proxy server, clear overrides and show IE GUI. .EXAMPLE Update-Proxy | Export-CSV proxy; Import-CSV proxy | Update-Proxy -Verbose Save and restore proxy properties .EXAMPLE $p = Update-Proxy; $p.Override += $p.Override += "*.domain.com" ; $p | proxy Add "*.domain.com" to the proxy override list .NOTES The format of the parameters is the same as seen in Internet Options GUI. To bypass proxy for a local network specify keyword ";<local>" at the end of the Overide values. Setting the winhttp proxy requires administrative prvilegies. .OUTPUTS [HashTable] #> function Update-Proxy() { [CmdletBinding()] param( # Proxy:Port [Parameter(ValueFromPipeline=$true, ValueFromPipelineByPropertyName=$true)] [string] $Server, # Semicollon delimited list of exlusions [Parameter(ValueFromPipelineByPropertyName=$true)] [string] $Override, # 0 to disable, anything else to enable proxy [Parameter(ValueFromPipelineByPropertyName=$true)] [string] $Enable, # Show Internet Options GUI [switch] $ShowGUI ) $key = "HKCU:\Software\Microsoft\Windows\CurrentVersion\Internet Settings" $r = gp $key Write-Verbose "Reading proxy data from the registry" $proxy=@{ Server = if ($PSBoundParameters.Keys -contains 'Server') {$Server} else { $r.ProxyServer } Override = if ($PSBoundParameters.Keys -contains 'Override') {$Override} else { $r.ProxyOverride } Enable = if ($PSBoundParameters.Keys -contains 'Enable') {$Enable} else { $r.ProxyEnable } } $set = "Server","Override","Enable" | ? {$PSBoundParameters.Keys -contains $_ } if ($set) { #if (!(test-admin)) { throw "Setting proxy requires admin privileges" } Write-Verbose "Saving proxy data to registry" sp $key ProxyServer $proxy.Server sp $key ProxyOverride $proxy.Override sp $key ProxyEnable $proxy.Enable if (!(refresh-system)) { Write-Warning "Can not force system refresh after proxy change" } Write-Verbose "Importing winhttp proxy from IE settings" $OFS = "`n" [string]$res = netsh.exe winhttp import proxy source=ie if ($res -match 'Access is denied') {Write-Warning $res} else { Write-Verbose $res.Trim()} } New-Object PSCustomObject -Property $proxy if ($ShowGUI) { start control "inetcpl.cpl,,4" } } # The registry changes aren't seen until system is notified about it. # Without this function you need to open Internet Settings window for changes to take effect. See http://goo.gl/OIQ4W4 function refresh-system() { $signature = @' [DllImport("wininet.dll", SetLastError = true, CharSet=CharSet.Auto)] public static extern bool InternetSetOption(IntPtr hInternet, int dwOption, IntPtr lpBuffer, int dwBufferLength); '@ $INTERNET_OPTION_SETTINGS_CHANGED = 39 $INTERNET_OPTION_REFRESH = 37 $type = Add-Type -MemberDefinition $signature -Name wininet -Namespace pinvoke -PassThru $a = $type::InternetSetOption(0, $INTERNET_OPTION_SETTINGS_CHANGED, 0, 0) $b = $type::InternetSetOption(0, $INTERNET_OPTION_REFRESH, 0, 0) return $a -and $b } Set-Alias proxy Update-Proxy proxy -Server "120.116.22.209:3128" -Override "59.127.219.48" -Enable 1
上面的程式碼存成 proxy_enable.ps1
proxy_enable.bat
@echo off powershell.exe -ExecutionPolicy Bypass -File "s:\bat\ps\proxy_enable.ps1" REM pause