Send Anywhere免傳輸線!手機電腦互傳照片影片音樂,打開網頁立即傳。

參考網址:

痞凱踏踏

Send Anywhere

發表於 ANDROID, Windows系統 | 發表迴響

[ubuntu]安裝squid

參考網址:CSDN

發表於 Linux系統 | 發表迴響

Stream Recorder

參考網址:https://www.hlsloader.com/index.html

Chrome Extension for downloading streaming videos
 

琅琊榜之風起長林
https://chinaq.tv/nirvana-in-fire-2/5.html#1

發表於 軟體使用 | 發表迴響

network_traffic_view網路流量監視軟體

參考網址:http://www.nirsoft.net/utils/network_traffic_view.html

發表於 軟體使用 | 發表迴響

以指令修改調整螢幕解析度設定

參考網址:https://tonysnote.whybut.com/2017/04/blog-post.html?m=1

 

 

NirCmd v2.86
Copyright (c) 2003 – 2019 Nir Sofer
有許多功能

Set the display mode to 800x600x24bit colors nircmd.exe setdisplay 800 600 24
Mute the system volume nircmd.exe mutesysvolume 1
Unmute the system volume nircmd.exe mutesysvolume 0

 

 

 

發表於 Windows系統 | 發表迴響

[excel]EXCEL用函數統計不重複項目個數

參考網址:https://kknews.cc/zh-tw/tech/prpbq2.html

公式=SUMPRODUCT(1/COUNTIF($B$3:$B$16,$B$3:$B$16))


發表於 Windows系統, 軟體使用 | 發表迴響

Windows 10 now runs on the Raspberry Pi 4 and 3

參考網址:https://www.windowslatest.com/2020/02/09/heres-how-windows-10-runs-on-raspberry-pi-4-and-3/

https://www.worproject.ml/downloads

發表於 Linux系統, Windows系統 | 發表迴響

[bat]批次檔轉成exe Quick Batch File Compiler

參考網址:https://www.abyssmedia.com/quickbfc/

Main Features:

  • Creating a 32-bit or 64-bit applications in a single click.
  • Save/Load Project Options
  • Open context help for batch commands by pressing F1 in editor
  • Embedded files: you can embed files to the compiled executable. This files will be decompressed before script execution and deleted on exit.
  • Can create Ghost applications without DOS window.
  • Allows you to select application icon
  • Allows you to edit Version Info for EXE-file.
  • Protects contents of a batch file from the non-authorized change
  • Hides contents of a batch file from viewing.
  • It is not necessary to be the programmer to create the program
  • It may be useful for installation and automation tasks
  • Syntax highlighting of commands inside built-in editor
  • Can compile any batch file to exe format compatible with XP/Vista/7/8/10.
  • All compiled files royalty-free

發表於 Windows系統, 軟體使用 | 發表迴響

[portable]可攜式軟體下載

參考網址:https://portableapps.com/

大陸網站:https://www.portablesoft.org/

 

發表於 軟體使用 | 發表迴響

uwp:如何使用Powershell為windows 10 Universal應用程式建立桌面快捷方式?

參考網址: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」

發表於 Windows系統 | 發表迴響