我正在启动一个setup.ps1,它定义了一堆别名 稍后,我使用这些别名调用.bat文件,并且得到“未被识别为内部或外部命令...”
我忘记了一些为什么这行不通的完全显而易见的事情吗?还是不起作用,我就疯了。
这是一个虚构的例子,
setup.ps1
GMSMapView *mapView = [GMSMapView new];
mapView.settings.myLocationButton = YES;
mapView.myLocationEnabled = YES;
mapView.delegate = self;
self.view = mapView;
[self.mapView setCamera:[GMSCameraPosition cameraWithTarget:[LocationManager currentLocation] zoom:9.0]];
[self resetMarkersWithNotification:YES];
example.bat的内容
New-Alias vs "C:\Program Files (x86)\Notepad++\notepad++.exe"
打开Powershell
。 。\ setup.ps1
example.bat