If you happen to be part of conferences in your Home windows 11 PC, you may make your system put together for the upcoming conferences by itself. Due to a customized script, your pc can mechanically modify the brightness, allow do-not-disturb mode, shut distracting apps, and launch your assembly apps.

How the Customized Assembly Mode Works

Home windows 11 doesn’t have a built-in assembly mode, however you possibly can create a customized one which does what you need it to do. You may make a mode that adjusts the screen brightness appropriate for on-line conferences. It may then allow Focus Help to take away any distractions.

The mode can even close any distracting apps that might intrude together with your assembly. And, it may additionally launch any assembly apps, akin to Microsoft Groups, if you happen to’d like.

You may then make one other mode that turns off assembly mode.

Associated


6 Meeting Prep Tips You Shouldn’t Skip

Should-do checks earlier than each name!

Step 1: Create a PowerShell Script for the Customized Assembly Mode

You’ll write a customized PowerShell script on your assembly mode. This script does the entire issues talked about above.

To start out, open Home windows Search (press Home windows+S), kind Notepad, and launch the app. In a brand new doc, kind the next script:

# Set brightness (0-100)
(Get-WmiObject -Namespace root/WMI -Class WmiMonitorBrightnessMethods).WmiSetBrightness(1,30)

# Allow Do Not Disturb (Focus Help - Precedence Solely)
# 0 = Off, 1 = Precedence solely, 2 = Alarms solely
Set-ItemProperty -Path HKCU:SOFTWAREMicrosoftWindowsCurrentVersionNotificationsSettings -Title NOC_GLOBAL_SETTING_TOASTS_ENABLED -Worth 0
Set-ItemProperty -Path HKCU:SOFTWAREMicrosoftWindowsCurrentVersionNotificationsSettingsOptions -Title FocusAssist -Worth 1
Cease-Course of -Title "ShellExperienceHost" -Pressure -ErrorAction SilentlyContinue

# Shut distracting apps
$appsToClose = "spotify", "discord", "chrome"
foreach ($app in $appsToClose) Cease-Course of -Pressure

# Launch assembly apps
Begin-Course of "C:UsersmahesAppDataLocalMicrosoftTeamsUpdate.exe"
Begin-Course of "C:UsersmahesAppDataRoamingZoombinZoom.exe"

Within the script, every part is pretty straightforward to know. Within the first part, exchange “30” with the display brightness degree you’d like. The second part activates Do Not Disturb mode. The third part closes the apps that you just specify.

Make certain to make use of your apps’ course of names and never the precise names. The fourth part launches the assembly apps you specify.

Associated


7 Essential Zoom Tips to Run Better Meetings

Get to know Zoom higher.

After making the required modifications, from Notepad’s menu bar, choose File > Save As. On the Save As window, select the folder wherein you wish to save the script.

Click on the “Save as Sort” drop-down menu and select “All Recordsdata.” Click on the “File Title” discipline and sort MeetingMode.ps1.

Notepad's "Save As" window to save the meeting mode script.

Step 2: Create a Desktop Shortcut to Begin Assembly Mode

Your assembly mode script is prepared. You’ll now create a desktop shortcut that runs the script and allows the mode. To do this, access your Windows 11 desktop (press Home windows+D). Proper-click anyplace clean on the desktop and select New > Shortcut.

Choose the “Sort the Location of the Merchandise” discipline and sort the next. Change the trail with the trail to your script. Then, click on “Subsequent.”

powershell.exe -ExecutionPolicy Bypass -File "C:ScriptsMeetingMode.ps1"
Various options highlighted on the "Create Shortcut" window.

On the next display, click on the “Sort a Title For This Shortcut” discipline and sort one thing like Begin Assembly Mode. Then, on the backside, select “End.”

Various options highlighted on the "Create Shortcut" window.

If you happen to’d like to alter your shortcut’s icon, right-click the shortcut and select “Properties.” Entry the “Shortcut” tab, click on “Change Icon,” and choose a brand new icon.

Associated


All Microsoft Teams Power Users Know These 7 Tricks

There’s extra to it than most individuals know.

Step 3: Assign a Keyboard Shortcut to Assembly Mode

To make activating assembly mode even quicker, assign the mode a keyboard shortcut. Then, while you press this key combo, the mode will likely be activated.

To do this, right-click your assembly mode desktop shortcut and select “Properties.” Open the “Shortcut” tab, click on the “Shortcut Key” discipline, and press the shortcut you’d like to make use of.

"Shortcut" and "Shortcut Key" highlighted on a shortcut's "Properties" window.

Then, on the backside, click on “Apply” adopted by “OK.”

Create a Mode That Turns Off Assembly Mode

You may create a customized mode that reverses your assembly mode’s actions. To do this, open Home windows Search (press Home windows+S), kind Notepad, and launch the app. In a brand new doc, kind the next:

# Restore brightness to 80%
(Get-WmiObject -Namespace root/WMI -Class WmiMonitorBrightnessMethods).WmiSetBrightness(1,80)

# Disable Do Not Disturb (Focus Help)
# 0 = Off
Set-ItemProperty -Path HKCU:SOFTWAREMicrosoftWindowsCurrentVersionNotificationsSettings -Title NOC_GLOBAL_SETTING_TOASTS_ENABLED -Worth 1
Set-ItemProperty -Path HKCU:SOFTWAREMicrosoftWindowsCurrentVersionNotificationsSettingsOptions -Title FocusAssist -Worth 0
Cease-Course of -Title "ShellExperienceHost" -Pressure -ErrorAction SilentlyContinue

# Reopen apps you closed
Begin-Course of "C:Program FilesGoogleChromeApplicationchrome.exe"
Begin-Course of "C:UsersmahesAppDataLocalDiscordUpdate.exe" --processStart "Discord.exe"

Within the script, within the first part, exchange “80” with the display brightness degree you need. The second part disables Do Not Disturb mode. Within the third part, specify the apps you need the script to launch for you. These are possible the apps that the customized assembly mode closed.

Associated


How to Quickly Launch Apps on Windows 11 Using Keyboard Shortcuts

Load your Home windows packages from the consolation of your keyboard.

Save the file by selecting File > Save As. Select a folder to avoid wasting the file in. Click on the “Save as Sort” drop-down menu and select “All Recordsdata.” Click on the “File Title” discipline and sort StopMeetingMode.ps1. You may create a desktop shortcut and assign it a keyboard shortcut if you happen to’d like.


And that’s the way you make your Home windows 11 system assembly prepared with a single click on or key press. When you’re at it, take into account studying some video conferencing tips for work from home.


Source link