|
Hi, I would like to stop my application playing a sound if the user has switched the iPhone to silent mode. Where can I read that the phone is in silent mode? Is there some flag I can query? I noticed that some applications ignore the silent mode and ...
Started by Alan Aherne on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
The ....
If the iPhone is silent, why stop playing a sound?
Or, does silent mode just not play certain Guidelines published by Apple describes what is the ideal behavior for Apps to follow for Ring/Silent switch on silent mode.
|
|
Is there a redistributable .Net 3.5 installation package that is a silent installer?
Or alternatively, is there a switch that can be passed to the main redistributable .Net 3.5 installer to make it silent?
Started by Brian R. Bondy on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
Dotnetfx35setup.exe /q /norestart
see the .net deployment guide at:
http://msdn.microsoft.com/en-us/library/cc160716.aspx
Here is an answer:
http://maaruthi.wordpress.com/2008/04/03/dot-net-framework-123-silent-installations .
|
|
What is the command line to silently install an MSI file?
Started by JoshRivers on
, 5 posts
by 5 people.
Answer Snippets (Read the full thread at serverfault):
See the docs for "Unattended": http://unattended.sourceforge.net/installers.php
In short, while there are ways to cause them to fail, these flags should work:
msiexec /qb /i blah.msi REBOOT=ReallySuppress
Standard Installer Command-Line Options
/quiet... .
|
Ask your Facebook Friends
|
Without doing stdout redirection. Is it possible to have a silent run of 7za?
Thank you
Started by romant on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at serverfault):
Is there any particular reason why you don't want to just do 7za a archive.7z files > /dev/null ?
Maybe you can wrap 7za in a script, so that the place that calls it doesn't need the redirection... .
Looking at the output of 7za --help , I don't think so .
|
|
Subject: Silent Night with the Silent Service
Any Submarine that served any nation at any time . What if's are allowed
Rules for Builds:
You may choose to build any scale, kit, scratchbuild or kitbash, dioramas are allowed, however the focus should be...
Started by MartinJQuinn on
, 20 posts
by 15 people.
Answer Snippets (Read the full thread at shipmodels):
I'm in with a 1/700 Gato 1941 I might....
I have a couple kits of it laying around and she's right here in battleship cove .
Going to try to get my hands on a 1/700 Gato....needs a dazzle paint scheme I'll be building the Lionfish from the skywave Gato kit .
|
|
I would like to build a silent PC. What desktop (mid-tower) case do you recommend? What case do you recommend to stay away?
Started by David Pokluda on
, 5 posts
by 5 people.
Answer Snippets (Read the full thread at serverfault):
One of the biggest causes of noise in a PC case is going to be through vibration, so you'll want to look for... .
Check out, building a quiet pc
http://www.codinghorror.com/blog/archives/000665.html
I am in the same market and am considering Antec P182 .
|
|
How can I run a CMD or .bat file in silent mode? I'm looking to prevent the CMD interface from being shown to the user.
Started by Tammen Bruccoleri on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
Here it is:
From your first script,....
I have proposed in StackOverflow question a way to run a batch file in the background ( no DOS windows displayed )
That should answer your question .
Include the phrase
@echo off
right at the top of your bat script .
|
|
Http://www.djangobook.com/en/beta/chapter10/
"Note that django.core.exceptions.ObjectDoesNotExist, which is the base class for all Django database API DoesNotExist exceptions, has silent_variable_failure = True. So if you’re using Django templates with...
Started by N Carter on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
The Django template system looks for silent_variable_failure as an attribute of any exception.
|
|
I am using Visual Studio2008 for my development and i want to create a silent set up package i.e. i don't want any UI to come up during installation. Is it possible to create a silent installer MSI using Visual Studio and if not then are there any other...
Answer Snippets (Read the full thread at stackoverflow):
Ocdecio said (which is absolutely correct):
If you want to make silent installation the default, i.e..
|
|
For some reason, we are delivering a product with our own install GUI, that means, we will run the msi installation silently background.
By using the MSI API "MsiInstallProduct", I can install the product silently, but I have no idea how can I get the...
Started by redjackwong on
, 4 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
In your case.
Different installation levels (full, completely silent, basic GUI, reduced GUI etc...).
|