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
2
votes
3 answers

Silently unshare a folder using Batch File

share and re-share a folder. I got the re-sharing part where i am stuck at is the un-sharing. I use this code NET SHARE d:\foldername /delete Which deletes the share but if there are people accessing the folder there is prompt to continue, now i…
Telson Alva
  • 842
  • 6
  • 22
  • 37
2
votes
1 answer

How do you play a sound on a loop in the background without being interrupted?

The following code should play a silent audio clip on a loop to keep an application active in the background: //set sessions .... ......... //play audio_player = [[AVAudioPlayer alloc] initWithContentsOfURL: url…
Paul
  • 397
  • 5
  • 9
2
votes
1 answer

Authorize.Net Silent Post Issue

I'm using ASP.NET 4.0, C#, Web Forms, and Master Pages. I'm trying to implement Authorize.Net's Silent Post feature and have created a couple test pages I have a test page (Silent_Test) with button that posts to another page (Silent). The problem…
2
votes
1 answer

Safely check if public GitHub repo exists in bash without login?

Context While trying out the answer provided in this question on how to check if a GitHub repository exists using bash, I notice that the command asks for credentials and throws an error if the repository is not found: git ls-remote…
a.t.
  • 2,002
  • 3
  • 26
  • 66
2
votes
1 answer

Looking for the simplest way to wrap a provided Setup.exe installer with a config.dat and a silent installation CLI execution

I am not familiar with Windows installer builder tools, other than having a conceptual understanding of them. I have a hopefully simple installer-file-wrapping-problem to solve where i would need some advice from people who know this field better…
2
votes
1 answer

Silencing output from tcpdump when using popen

I am writing a program in C to analyze packets that are captured by tcpdump. In my program I use popen to open a pipe to a tcpdump process which captures the packets and dumps the raw data to stdout as shown below. FILE *tcpdump = popen("tcpdump -s0…
DanielGibbs
  • 9,910
  • 11
  • 76
  • 121
2
votes
1 answer

How to change ringer mode to Silent/Ring/Vibrate on click in react-native android application?

I am creating an application for android using react-native. I need to change the ringer mode to Silent or Ring or Vibrate on click as per request and the ringer mode should have to change for the phone. How do I achieve this functionality?
Dev Megaminds
  • 43
  • 1
  • 5
2
votes
1 answer

How can I make iPhone Silent mode independent to iPhone App?

Is it really possible to make iPhone Silent mode independent to iPhone App ? This App "Talking Carl" makes me so confused. My iphone was in Silent mode. And whenever I open this application. Application sound is in ON mode. But iPhone sound is in…
Tariq
  • 9,861
  • 12
  • 62
  • 103
2
votes
1 answer

Bash command stopped working after adding inline comment

The assignment of a new value generated in a subshell does work without the trailing comment: newname=$(echo "$newname" | sed 's@TD.'"$oldnewTD"'@TD.r'"$ftd1"'@') But the variable newname stays unchanged if a trailing comment is…
2
votes
2 answers

Uninstall Chrome silently using Powershell

I have the following PowerShell script, which I am using to get the uninstall string for Google Chrome, and then I want to uninstall it silently. Line 3 in the script will pop up the GUI uninstaller (so it seems like everything is correct thus far),…
Andrew
  • 79
  • 2
  • 4
  • 11
2
votes
1 answer

Android don't play sound effect when Do not Disturb is on

I'm using the MediaPlayer to play a sound effect. However when DnD (Do not Disturb) is turned on it still plays the sound. This is my code: public static void playSound(Context context, @RawRes int soundId) { MediaPlayer mp =…
2
votes
1 answer

How can I minimize logging of monitoring requests?

My rails app is pinged every minute for a health check and I want to keep these out of the log unless there is an error. I was able to do this in Rails 2.3.5 by setting the logger with this in application_controller.rb: def logger if…
2
votes
0 answers

jdk version 8 silent install doesn't update path environment variable

I am installing JDK 8 171 on windows 2016 server core using Ansible. When I install using the GUI, it updates my path on my workstation. But when I do it silently it does not. I will have to make Ansible update the path or the batch files if it…
2
votes
1 answer

Why is ExecShell ignoring my show type arguments?

I'm trying to execute a batch file silently and asynchronously from an NSIS installer. I want it to be silent to prevent the user from closing it and I want it to be asynchronous so that the installer will close automatically while the batch file is…
Kyle Delaney
  • 11,616
  • 6
  • 39
  • 66
2
votes
3 answers

Using an internal network, is it possible to print documents silently?

I have a client that hosts a touch screen kiosk in their lobby. It's essentially an internal html website. They want customers to be able to click a link and have a pdf print without seeing a print dialog or having to back track... completely…
Diventare Creative
  • 481
  • 3
  • 11
  • 31