前言 下班回家使用電腦。專心的時候會使用耳機,放鬆的時候就會用喇叭,然後 看看劇或 Youtube 影片等等。這時候都要將滑鼠移到右下方的語音圖示, 去選擇想要的音效輸出。雖然只是幾個動作而已,太過頻繁,反而發現相當 耗時,索性找方法設定快捷鍵,來方便切換。
-步驟 首先用系統管理員的身分執行PowerShell,執行 Install-Module AudioDeviceCmdlets 安裝模組,安裝完成後,就能夠 執行 Get-AudioDevice 取得電腦目前有的音效輸出。 將下面的 Index 號碼記下: Index 1 對應至觸控螢幕 ASUS MB14AHD Index 2 對應至電腦的喇叭 使用文字編輯器開啟 autohotkey 的檔案,將下面的腳本貼上儲存, 執行檔案啟用autohotkey,未來只要按fn + v就可以切換音效輸出。 #v:: ; Fn+v Hotkey t := !t ; Toggle Var (0 or 1) If (t = "1") { Run, powershell -Command "Set-AudioDevice 1",, hide } If (t = "0") { Run, powershell -Command "Set-AudioDevice 2",, hide } ……
+步驟 首先用系統管理員的身分執行PowerShell,執行 Install-Module AudioDeviceCmdlets 安裝模組,安裝完成後,就能夠 執行 Get-AudioDevice 取得電腦目前有的音效輸出。 將下面的 Index 號碼記下: Index 1 對應至觸控螢幕 ASUS MB14AHD Index 2 對應至電腦的喇叭 使用文字編輯器開啟 autohotkey 的檔案,將下面的腳本貼上儲存, 執行檔案啟用autohotkey,未來只要按fn + v就可以切換音效輸出。 #v:: ; Fn+v Hotkey t := !t ; Toggle Var (0 or 1) If (t = "1") { Run, powershell -Command "Set-AudioDevice 1",, hide } If (t = "0") { Run, powershell -Command "Set-AudioDevice 2",, hide } 參考資料 Quickly Switch Audio Devices on Windows……
Continue reading
diff --git a/archives/2024/index.xml b/archives/2024/index.xml
index a9f2ceb..54f77f4 100644
--- a/archives/2024/index.xml
+++ b/archives/2024/index.xml
@@ -14,7 +14,7 @@
-
diff --git a/post/2024/20241031_switch_audio_output_automation/index.html b/post/2024/20241031_switch_audio_output_automation/index.html
index 2fbf5e8..1a63ce0 100644
--- a/post/2024/20241031_switch_audio_output_automation/index.html
+++ b/post/2024/20241031_switch_audio_output_automation/index.html
@@ -113,17 +113,19 @@
步驟
使用文字編輯器開啟 autohotkey 的檔案,將下面的腳本貼上儲存,
執行檔案啟用autohotkey,未來只要按fn + v就可以切換音效輸出。
-#v:: ; Fn+v Hotkey
-t := !t ; Toggle Var (0 or 1)
-If (t = "1")
-{
-Run, powershell -Command "Set-AudioDevice 1",, hide
-}
-If (t = "0")
-{
-Run, powershell -Command "Set-AudioDevice 2",, hide
-}
-
+#v:: ; Fn+v Hotkey
+t := !t ; Toggle Var (0 or 1)
+If (t = "1")
+{
+Run, powershell -Command "Set-AudioDevice 1",, hide
+}
+If (t = "0")
+{
+Run, powershell -Command "Set-AudioDevice 2",, hide
+}
+
參考資料
+Quickly Switch Audio Devices on Windows
+
diff --git a/post/index.html b/post/index.html
index 0c1bb75..9d0a59a 100644
--- a/post/index.html
+++ b/post/index.html
@@ -89,7 +89,7 @@
前言 下班回家使用電腦。專心的時候會使用耳機,放鬆的時候就會用喇叭,然後 看看劇或 Youtube 影片等等。這時候都要將滑鼠移到右下方的語音圖示, 去選擇想要的音效輸出。雖然只是幾個動作而已,太過頻繁,反而發現相當 耗時,索性找方法設定快捷鍵,來方便切換。
-步驟 首先用系統管理員的身分執行PowerShell,執行 Install-Module AudioDeviceCmdlets 安裝模組,安裝完成後,就能夠 執行 Get-AudioDevice 取得電腦目前有的音效輸出。 將下面的 Index 號碼記下: Index 1 對應至觸控螢幕 ASUS MB14AHD Index 2 對應至電腦的喇叭 使用文字編輯器開啟 autohotkey 的檔案,將下面的腳本貼上儲存, 執行檔案啟用autohotkey,未來只要按fn + v就可以切換音效輸出。 #v:: ; Fn+v Hotkey t := !t ; Toggle Var (0 or 1) If (t = "1") { Run, powershell -Command "Set-AudioDevice 1",, hide } If (t = "0") { Run, powershell -Command "Set-AudioDevice 2",, hide } ……
+步驟 首先用系統管理員的身分執行PowerShell,執行 Install-Module AudioDeviceCmdlets 安裝模組,安裝完成後,就能夠 執行 Get-AudioDevice 取得電腦目前有的音效輸出。 將下面的 Index 號碼記下: Index 1 對應至觸控螢幕 ASUS MB14AHD Index 2 對應至電腦的喇叭 使用文字編輯器開啟 autohotkey 的檔案,將下面的腳本貼上儲存, 執行檔案啟用autohotkey,未來只要按fn + v就可以切換音效輸出。 #v:: ; Fn+v Hotkey t := !t ; Toggle Var (0 or 1) If (t = "1") { Run, powershell -Command "Set-AudioDevice 1",, hide } If (t = "0") { Run, powershell -Command "Set-AudioDevice 2",, hide } 參考資料 Quickly Switch Audio Devices on Windows……
Continue reading
diff --git a/post/index.xml b/post/index.xml
index 9997342..50b7746 100644
--- a/post/index.xml
+++ b/post/index.xml
@@ -14,7 +14,7 @@
https://www.cjhung.tw/post/2024/20241031_switch_audio_output_automation/
前言 下班回家使用電腦。專心的時候會使用耳機,放鬆的時候就會用喇叭,然後 看看劇或 Youtube 影片等等。這時候都要將滑鼠移到右下方的語音圖示, 去選擇想要的音效輸出。雖然只是幾個動作而已,太過頻繁,反而發現相當 耗時,索性找方法設定快捷鍵,來方便切換。
-步驟 首先用系統管理員的身分執行PowerShell,執行 Install-Module AudioDeviceCmdlets 安裝模組,安裝完成後,就能夠 執行 Get-AudioDevice 取得電腦目前有的音效輸出。 將下面的 Index 號碼記下: Index 1 對應至觸控螢幕 ASUS MB14AHD Index 2 對應至電腦的喇叭 使用文字編輯器開啟 autohotkey 的檔案,將下面的腳本貼上儲存, 執行檔案啟用autohotkey,未來只要按fn + v就可以切換音效輸出。 #v:: ; Fn+v Hotkey t := !t ; Toggle Var (0 or 1) If (t = "1") { Run, powershell -Command "Set-AudioDevice 1",, hide } If (t = "0") { Run, powershell -Command "Set-AudioDevice 2",, hide }
+步驟 首先用系統管理員的身分執行PowerShell,執行 Install-Module AudioDeviceCmdlets 安裝模組,安裝完成後,就能夠 執行 Get-AudioDevice 取得電腦目前有的音效輸出。 將下面的 Index 號碼記下: Index 1 對應至觸控螢幕 ASUS MB14AHD Index 2 對應至電腦的喇叭 使用文字編輯器開啟 autohotkey 的檔案,將下面的腳本貼上儲存, 執行檔案啟用autohotkey,未來只要按fn + v就可以切換音效輸出。 #v:: ; Fn+v Hotkey t := !t ; Toggle Var (0 or 1) If (t = "1") { Run, powershell -Command "Set-AudioDevice 1",, hide } If (t = "0") { Run, powershell -Command "Set-AudioDevice 2",, hide } 參考資料 Quickly Switch Audio Devices on Windows
前言 下班回家使用電腦。專心的時候會使用耳機,放鬆的時候就會用喇叭,然後 看看劇或 Youtube 影片等等。這時候都要將滑鼠移到右下方的語音圖示, 去選擇想要的音效輸出。雖然只是幾個動作而已,太過頻繁,反而發現相當 耗時,索性找方法設定快捷鍵,來方便切換。
-步驟 首先用系統管理員的身分執行PowerShell,執行 Install-Module AudioDeviceCmdlets 安裝模組,安裝完成後,就能夠 執行 Get-AudioDevice 取得電腦目前有的音效輸出。 將下面的 Index 號碼記下: Index 1 對應至觸控螢幕 ASUS MB14AHD Index 2 對應至電腦的喇叭 使用文字編輯器開啟 autohotkey 的檔案,將下面的腳本貼上儲存, 執行檔案啟用autohotkey,未來只要按fn + v就可以切換音效輸出。 #v:: ; Fn+v Hotkey t := !t ; Toggle Var (0 or 1) If (t = "1") { Run, powershell -Command "Set-AudioDevice 1",, hide } If (t = "0") { Run, powershell -Command "Set-AudioDevice 2",, hide } ……
+步驟 首先用系統管理員的身分執行PowerShell,執行 Install-Module AudioDeviceCmdlets 安裝模組,安裝完成後,就能夠 執行 Get-AudioDevice 取得電腦目前有的音效輸出。 將下面的 Index 號碼記下: Index 1 對應至觸控螢幕 ASUS MB14AHD Index 2 對應至電腦的喇叭 使用文字編輯器開啟 autohotkey 的檔案,將下面的腳本貼上儲存, 執行檔案啟用autohotkey,未來只要按fn + v就可以切換音效輸出。 #v:: ; Fn+v Hotkey t := !t ; Toggle Var (0 or 1) If (t = "1") { Run, powershell -Command "Set-AudioDevice 1",, hide } If (t = "0") { Run, powershell -Command "Set-AudioDevice 2",, hide } 參考資料 Quickly Switch Audio Devices on Windows……
Continue reading
diff --git a/tags/powershell/index.xml b/tags/powershell/index.xml
index 086fd33..f91e80d 100644
--- a/tags/powershell/index.xml
+++ b/tags/powershell/index.xml
@@ -14,7 +14,7 @@
https://www.cjhung.tw/post/2024/20241031_switch_audio_output_automation/
前言 下班回家使用電腦。專心的時候會使用耳機,放鬆的時候就會用喇叭,然後 看看劇或 Youtube 影片等等。這時候都要將滑鼠移到右下方的語音圖示, 去選擇想要的音效輸出。雖然只是幾個動作而已,太過頻繁,反而發現相當 耗時,索性找方法設定快捷鍵,來方便切換。
-步驟 首先用系統管理員的身分執行PowerShell,執行 Install-Module AudioDeviceCmdlets 安裝模組,安裝完成後,就能夠 執行 Get-AudioDevice 取得電腦目前有的音效輸出。 將下面的 Index 號碼記下: Index 1 對應至觸控螢幕 ASUS MB14AHD Index 2 對應至電腦的喇叭 使用文字編輯器開啟 autohotkey 的檔案,將下面的腳本貼上儲存, 執行檔案啟用autohotkey,未來只要按fn + v就可以切換音效輸出。 #v:: ; Fn+v Hotkey t := !t ; Toggle Var (0 or 1) If (t = "1") { Run, powershell -Command "Set-AudioDevice 1",, hide } If (t = "0") { Run, powershell -Command "Set-AudioDevice 2",, hide }
+步驟 首先用系統管理員的身分執行PowerShell,執行 Install-Module AudioDeviceCmdlets 安裝模組,安裝完成後,就能夠 執行 Get-AudioDevice 取得電腦目前有的音效輸出。 將下面的 Index 號碼記下: Index 1 對應至觸控螢幕 ASUS MB14AHD Index 2 對應至電腦的喇叭 使用文字編輯器開啟 autohotkey 的檔案,將下面的腳本貼上儲存, 執行檔案啟用autohotkey,未來只要按fn + v就可以切換音效輸出。 #v:: ; Fn+v Hotkey t := !t ; Toggle Var (0 or 1) If (t = "1") { Run, powershell -Command "Set-AudioDevice 1",, hide } If (t = "0") { Run, powershell -Command "Set-AudioDevice 2",, hide } 參考資料 Quickly Switch Audio Devices on Windows