1

I have a SIM-Card in my Laptop and I want to automate the connection. I have removed the PIN from the SIM-Card. I can disconnect with

netsh mbn disconnect interface="Cellular"

This works. If I try to connect with

netsh mbn connect interface="Cellular"

I get an error, that one or more Parameters are wrong for the command.

I'm using a Windows 10 Machine.

MGP
  • 2,480
  • 1
  • 18
  • 31
  • 2
    Have you tried the steps from https://stackoverflow.com/a/51632402/8330162 yet? – B--rian Aug 15 '19 at 14:49
  • @B--rian : Thanks for the link, I've been looking for something like that for a long time! Hey you guys, no upvotes for that well written (and for at least one other person ) helpful answer? C'mon! Good luck to all! – shellter Aug 15 '19 at 17:56

1 Answers1

1

As suggested by B--rian I ended up using

netsh mbn connect interface="Cellular" connmode=name name="{...}"

I had to disable the PIN for this to work.

MGP
  • 2,480
  • 1
  • 18
  • 31