diff --git a/scripts/Windows/OS/Install.ps1 b/scripts/Windows/OS/Install.ps1
index 145a4cd7..ccf876c0 100644
--- a/scripts/Windows/OS/Install.ps1
+++ b/scripts/Windows/OS/Install.ps1
@@ -16,9 +16,9 @@ function Invoke-WindowsInstallation([Context] $context)
         Write-Host "Installing Drivers";
         Write-Information "Looking for driver installation function";
 
-        if ((Get-Command Install-Drivers -ErrorAction SilentlyContinue)) {
+        if ((Get-Command Install-PortValhallaDrivers -ErrorAction SilentlyContinue)) {
             Write-Information "Driver installation function was found. Starting installation";
-            Install-Drivers $context;
+            Install-PortValhallaDrivers $context;
         }
 
         Write-Information "Finished installing drivers";