Comments:
- I am trying to install Skype for business and Microsoft office on my MacBook Air 2015. But need to update to macOS 10.11 for this. (macOS Big Sur) a command line.
- Use the dynamic build of the stable Skype client (4.3.37), is the only one that works (the interactive installer automatically download and install the correct Skype client, see below). Don't use the build for your distro. Supported Platforms and Distros. Skypopen runs well on Linux and Windows. Does not work on Mac OSX. Most supported Linux.
- I have an MSI package that need to be installed company wide. I also have command line switches that i need to specify so that it installs silently plus some other things. The problem i'm facing now is after i created a 'Software Package' in GPO, it doesn't provide for a way to specify the switches. I was expecting it would be like in task.
5 Ways to Get Help in the Command Line of Mac OS X Feb 24, 2007 - 3 Comments Whether you’re a unix novice or veteran to the terminal, if you’re using the command line you’ll often find yourself looking up exactly how to use a specific command for either its understanding the commands full functionality or just to discover the proper syntax. Vivaldi does not currently provide any user interface for switching user profiles outside of the command line switch —profile-directory= (where you pass the name of the profile). However on macOS, you can make a quick launcher application in Automator. Open the Automator.app (part of macOS) and create a new “Application”.
- misteriks, this worked for me! I've been struggling with this for some time, so thank you! - SRock686 years ago
- This works for me as well. I Microsoft Lync Basic 2013. I used the following as a batch file.
************************************************
echo off
taskkill.exe /F /IM iexplore.exe /T
taskkill.exe /F /IM outlook.exe /T
taskkill.exe /F /IM lync.exe /T
'%~dp0Setup.exe' /uninstall LYNCENTRY /config '%~dp0adminconfig_uninstall_Lync_Basic.xml'
****************************************************
Now I placed the xml in Admin > config_uninstall_Lync_Basic.xml
the XML should look like:
****************************************************
<Configuration Product='LYNCENTRY'>
<Display Level='None' AcceptEULA='TRUE' />
<Setting Value='NEVER' />
</Configuration>
******************************************************
Thanks misteriks - felixcruz35 years ago - The 'C:Program FilesCommon FilesMicrosoft SharedOFFICE15Office Setup Controllersetup.exe' /UNINSTALL Lync /config c:tempSilentUninstallLync.xml worked perfectly - burnhas4 years ago
To totally unlock this section you need to Log-in
Login
Well this is most of the time easy but useful when need and you can't remind the command you have to use to add a static route in a Mac OS X installation.
Open fist the terminal session. Use the following command:
sudo route -n add x.x.x.x/24 x.x.x.x |
You have to enter your password.
To delete a route you have to use the following command:
Skype Command Line Switches
sudo route -n delete x.x.x.x/24 x.x.x.x |
To view you route table on you Mac you use the following command:
netstat -nr |
Add a startup item (to avoid doing the above command every reboot):
cd /System/Library/StartupItems mkdir AddRoutes cd AddRoutes |
Create a file called AddRoutes (Note: same as the folder name).
vi AddRoutes ------------------------- #!/bin/sh # Set static routing tables . /etc/rc.common StartService () { if [ '${ADDROUTES:=-NO-}' = '-YES-' ]; then ConsoleMessage 'Adding Static Routing Table' sudo route -nv add 10.0.0.0/8 10.16.3.254 fi } StopService () { return 0 } StopService () { return 0 } RestartService () { return 0 } RunService “$1″ |
Skype Command Line Options
Then create a file StartupParameters.plist:
{ Description = “Add static routing tables”; Provides = (”AddRoutes”); Requires = (”Network”); OrderPreference = “None”; } |
Then change permissions:
chmod 755 AddRoutes StartupParameters.plist |
Skype Command Line Switches For Macos Update
Reboot your computer. Verify with netstat -nr.