From 62c99aedf4db2bbb08cb82601bead3978a3d828f Mon Sep 17 00:00:00 2001
From: Hayden Plumley <mrhaydendp@gmail.com>
Date: Mon, 16 May 2022 19:54:14 -0700
Subject: [PATCH] Fixed Missing Parenthesis

---
 winutil.ps1 | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/winutil.ps1 b/winutil.ps1
index 277c68be..2de9df19 100644
--- a/winutil.ps1
+++ b/winutil.ps1
@@ -620,7 +620,7 @@ $WPFinstall.Add_Click({
     }    
 
     # If Winget isn't Installed, Open MS Store Window to Install
-    if (!Get-AppPackage -name 'Microsoft.DesktopAppInstaller') {
+    if (!(Get-AppPackage -name 'Microsoft.DesktopAppInstaller')) {
         Start-Process "ms-windows-store://pdp/?ProductId=9NBLGGH4NNS1"
         $nid = (Get-Process AppInstaller).Id; Wait-Process -Id $nid
     }