Questions tagged [silent]

Silent refers to the suppression of messaging of a process or thread. Such threads may typically send messages over any of various channels, including [stdout] or [stderr].

Overview

Silent refers to the suppression of messaging of a process or thread. Such threads may typically send messages over any of various channels, including [stdout] or [stderr].

347 questions
4
votes
3 answers

Recognising iPhone Silent Mode

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…
Alan
  • 796
  • 9
  • 26
4
votes
2 answers

Make SFTP script silent

I've currently got a SFTP script that uploads the latest version of a file to a server via SSH which runs on a cron daily. However I always get emails like this (I changed the server to example.com fyi) /etc/cron.daily/backup: Connected to…
Mooash
  • 43
  • 1
  • 3
4
votes
2 answers

Print PDF from VBscript or command line without acrobat.exe

Is it possible to print a pdf document to the default printer inside of vbscript or from the command line without AcroRd32.exe? Ideally if would be nice to just send the pdf to printer and not need another program. or - Is there a 3rd party .exe…
Brian McGinity
  • 5,777
  • 5
  • 36
  • 46
4
votes
1 answer

Nullsoft Scriptable Install System (NSIS) Installer - Silent Mode

How to make a Nullsoft Scriptable Install System (NSIS) installer silent? From Wikipedia: "Nullsoft Scriptable Install System (NSIS), est un logiciel libre contrôlable par script, qui permet la création d'installateurs pour Windows. Il a été…
kiriloff
  • 25,609
  • 37
  • 148
  • 229
3
votes
3 answers

How to make a simple Hello World "invisible" in Windows (C/C++)

Hello there i would like to know if it is possible to make a simple Hello World program in Windows (and then advance to actual ones) invisible. By that I mean, when I execute the program there will be no graphical indication whatsoever. No cmd…
Tasos
  • 1,575
  • 5
  • 18
  • 44
3
votes
3 answers

Control the output of a make command to be less verbose, don't echo each command

Currently, I'm using a Makefile to keep track of all dependencies and copilation of my project. The problem is that make simply outputs everything it's doing, and that makes it hard to spot (or even read) more important information (such as compiler…
Malabarba
  • 4,473
  • 2
  • 30
  • 49
3
votes
3 answers

AudioServicesAddSystemSoundCompletion callback not getting called in silent mode

If I put device into silent mode using switch, AudioServicesAddSystemSoundCompletion callback method doesn't get called. If the switch is on, I mean if device is NOT in silent mode, method gets called perfectly. Has anyone experienced something like…
erkanyildiz
  • 13,044
  • 6
  • 50
  • 73
3
votes
1 answer

vim : nmap

In vim I have this nmap nmap ,mu : marks ABCDEFGHIJKLMNOPQRSTUVWXYZ If I don´t have Upper marks and try ,mu I get E283: No marks matching "ABCDEFGHIJKLMNOPQRSTUVWXYZ" why don't show the Error output ?
JuanPablo
  • 23,792
  • 39
  • 118
  • 164
3
votes
1 answer

how to remove silence periods from wav file in python?

I have a conversation in wav file (customer service) I split it to 2 audio channels. Now I have 2 wav files and each person is speaking and it has silence periods. I need to cut out those silent periods to "compress" all one's persons words in…
ERJAN
  • 23,696
  • 23
  • 72
  • 146
3
votes
2 answers

How to silently install r-base in an ubuntu docker image

I need to install r-base within an ubuntu:18.04 dockerimage. I am doing this while building my image via RUN apt-get update; apt-get install -y r-base [many other packages] along with many other package installations. The problem is, that while…
Daniel
  • 578
  • 6
  • 18
3
votes
1 answer

Make certain test silent in Jest

Is there any way to make a certain test silent (show console output only if it fails) in Jest? Looks like jest --silent makes all tests silent, which is not desirable. I need to simulate an error and make sure it's correctly handled, but…
Dmitry Druganov
  • 2,088
  • 3
  • 23
  • 32
3
votes
1 answer

How to install MySQL unattended with custom settings?

This is the command-line used install MySQL silently, /quiet But how to run the MySQL installer unattended with custom settings in the installer?
Codename K
  • 890
  • 4
  • 23
  • 52
3
votes
4 answers

Run .bat file through C# code as different user silently

I am running one batch file every few seconds to do timesync with server using following code: Process process = new Process(); process.StartInfo.WorkingDirectory =…
user393014
  • 445
  • 1
  • 8
  • 15
3
votes
2 answers

From command line download latest Java SE Runtime Environment 8 on Windows

On a Windows server, I am looking for a robust way to download latest Java SE Runtimes from command-line . My requirement is to check if java is installed on the system. If java is not found, our MSI installer (created with WIX) need to connect…
SarfarazKhan
  • 79
  • 3
  • 6
3
votes
1 answer

Sounds still play when mute/silent mode is ON

I'm playing system sounds using AudioServicesPlaySystemSoundWithCompletion and custom sounds using AVAudioPlayer. Why are sounds played if the silent switch is on? I've tried all the categories for the "AVAudioSession". I tried the following code: …
user3427013
  • 1,039
  • 1
  • 13
  • 28