tabs-not-spaces/Intune.USB.Creator

Multiple request is not supported errors

SharirAG opened this issue · 5 comments

Hi,

After creating the USB and pluging it in to multiple laptops. i get a warning: The request is not supported.

this happens when setting the power policy , we have fixed this by editing the invoke-provision.ps1 file:

        switch ($powerPlan) {
            PowerSaver {
                Write-Host "Setting power policy to 'Power Saver'.." -ForegroundColor Cyan
                $planGuid = "a1841308-3541-4fab-bc81-f71556f20b4a"
            }
            Balanced {
                Write-Host "Setting power policy to 'Balanced'.." -ForegroundColor Cyan
                $planGuid = "381b4222-f694-41f0-9685-ff5bb260df2e"
            }
            HighPerformance {
                Write-Host "Setting power policy to 'High Performance'.." -ForegroundColor Cyan
                $planGuid = "8c5e7fda-e8bf-4a96-9a85-a6e23a8c635c"
            }
            default {
                throw "Incorrect selection.."
            }
        }
        Invoke-CmdLine -application powercfg -argumentList "/s $planGuid" -silent
    }
    catch {
        Write-Host $_.Exception.Message -ForegroundColor Red

after this edit, the usb continued to the next step.

but at the setting install.wim location
we got the another Warning: The request is not supported.

WhatsApp Image 2020-11-26 at 15 04 31
WhatsApp Image 2020-11-26 at 15 44 54

USB has been built successfully
image

thansk for the quick response.

is there anything we can do at the moment to bypass this problem?

duplicate issue to #22 which has since been resolved.

Hi,

I've used the updated script, but i still get the same error.

Anythng I can do, to help troubleshooting?