Sponsored Content
Full Discussion: A Windows password script
Special Forums Windows & DOS: Issues & Discussions A Windows password script Post 302408914 by bigbutt100 on Tuesday 30th of March 2010 10:12:06 PM
Old 03-30-2010
PHP

Well let me say I appreciate your answer because that is helping.

Although, I would appreciate it even more if you left out your relentless comments, one example "which is it it can't be both."

I get a kick out of people who have to criticize to feel good. Especially where its not necessary (like a forum to help people.)

This is where I stop seeking help from forums like this. They seem to be filled with people and there bad personalities. Instead of people who just want to help.

I started this same exact thread on another site and it is quite different (much more friendly people).

Thread closed for me.
 

9 More Discussions You Might Find Interesting

1. Solaris

Windows 2003 sp1 to Solaris 10 6/06 password synchronization (ssod)

We are currently using ssod daemon, included with SFU 3.5, to synchronize passwords from AD to Solaris 8. We are now upgrading to a new Solaris 10 server. I loaded out the sso.conf, and the ssod on the server. Ssod seems to start up fine, but it gives an error on the console when I change a... (0 Replies)
Discussion started by: james_ryan
0 Replies

2. Windows & DOS: Issues & Discussions

How to find windows user without any password

How to find windows users without any password.. (0 Replies)
Discussion started by: RPG
0 Replies

3. AIX

How to do ssh without password from windows to AIX?

I know how to ssh without password from AIX to AIX, however, how to do it from Windows to AIX? (6 Replies)
Discussion started by: rainbow_bean
6 Replies

4. Windows & DOS: Issues & Discussions

windows startup password

Hi, a friend of mine uses windows and he changed his password (using some weird non-english characters). Now when he logged into windows, it asked for the admin password and he couldn't enter those characters (you can only turn that on once you're in windows). So is there anyway to login or... (0 Replies)
Discussion started by: chaoses
0 Replies

5. Windows & DOS: Issues & Discussions

ssh: sending password from windows client

Hi. My workstation is Windows. I use putty to connect to unix servers. The problem is that i'm doing it many times a day and each time i need to supply password. I have no control on ssh configuration on servers, because of account restrictions. So i can't use key authentication, how is suggested... (4 Replies)
Discussion started by: kukuruku
4 Replies

6. Shell Programming and Scripting

how to change root password using shell script with standard password

Hi Friends. I am new to scripting now i want to change the root password using the script with standard password. which is the easy scripting to learn for the beginner, Thanks in advance. (2 Replies)
Discussion started by: kurva
2 Replies

7. Windows & DOS: Issues & Discussions

How to Recover windows administrator password?

HI, Can anybody tell me..about recovering windows administrator password in case of Forget it. Now in Unix OS and any database,there is a fascility of recovering root/admin password.... Can window provide any such kind of fascility?....Also tell me any other normal users password recovery... (5 Replies)
Discussion started by: jagdish.machhi@
5 Replies

8. Solaris

How to set password for vnc software installed in windows machine?

i want user to prompt for password when ever he tries to login into solaris box using vnc software. is it possible.. each time the user tries to access a solaris box should be prompted for password. and each user can set his own password for his session? if all the above are possible which... (3 Replies)
Discussion started by: chidori
3 Replies

9. Red Hat

How to make a Password-Less Login from Windows to Linux using OpenSSH?

I installed the OpenSSH on my Windows Machine. I want to connect to the remote Linux machine without typing password. I followed the bellow instructions but the SSH needs password to establish the connection yet. Open CMD and run: ssh-keygen -t rsa (The public and private keys are generated in... (1 Reply)
Discussion started by: manoj.solaris
1 Replies
QSemaphore(3qt) 														   QSemaphore(3qt)

NAME
QSemaphore - Robust integer semaphore SYNOPSIS
All the functions in this class are thread-safe when Qt is built with thread support.</p> #include <qsemaphore.h> Public Members QSemaphore ( int maxcount ) virtual ~QSemaphore () int available () const int total () const int operator++ ( int ) int operator-- ( int ) int operator+= ( int n ) int operator-= ( int n ) bool tryAccess ( int n ) DESCRIPTION
The QSemaphore class provides a robust integer semaphore. A QSemaphore can be used to serialize thread execution, in a similar way to a QMutex. A semaphore differs from a mutex, in that a semaphore can be accessed by more than one thread at a time. For example, suppose we have an application that stores data in a large tree structure. The application creates 10 threads (commonly called a thread pool) to perform searches on the tree. When the application searches the tree for some piece of data, it uses one thread per base node to do the searching. A semaphore could be used to make sure that two threads don't try to search the same branch of the tree at the same time. A non-computing example of a semaphore would be dining at a restuarant. A semaphore is initialized to have a maximum count equal to the number of chairs in the restuarant. As people arrive, they want a seat. As seats are filled, the semaphore is accessed, once per person. As people leave, the access is released, allowing more people to enter. If a party of 10 people want to be seated, but there are only 9 seats, those 10 people will wait, but a party of 4 people would be seated (taking the available seats to 5, making the party of 10 people wait longer). When a semaphore is created it is given a number which is the maximum number of concurrent accesses it will permit. This amount may be changed using operator++(), operator--(), operator+=() and operator-=(). The number of accesses allowed is retrieved with available(), and the total number with total(). Note that the incrementing functions will block if there aren't enough available accesses. Use tryAccess() if you want to acquire accesses without blocking. See also Environment Classes and Threading. MEMBER FUNCTION DOCUMENTATION
QSemaphore::QSemaphore ( int maxcount ) Creates a new semaphore. The semaphore can be concurrently accessed at most maxcount times. QSemaphore::~QSemaphore () [virtual] Destroys the semaphore. Warning: If you destroy a semaphore that has accesses in use the resultant behavior is undefined. int QSemaphore::available () const Returns the number of accesses currently available to the semaphore. int QSemaphore::operator++ ( int ) Postfix ++ operator. Try to get access to the semaphore. If available() == 0, this call will block until it can get access, i.e. until available() > 0. int QSemaphore::operator+= ( int n ) Try to get access to the semaphore. If available() < n, this call will block until it can get all the accesses it wants, i.e. until available() >= n. int QSemaphore::operator-- ( int ) Postfix -- operator. Release access of the semaphore. This wakes all threads waiting for access to the semaphore. int QSemaphore::operator-= ( int n ) Release n accesses to the semaphore. int QSemaphore::total () const Returns the total number of accesses to the semaphore. bool QSemaphore::tryAccess ( int n ) Try to get access to the semaphore. If available() < n, this function will return FALSE immediately. If available() >= n, this function will take n accesses and return TRUE. This function does not block. SEE ALSO
http://doc.trolltech.com/qsemaphore.html http://www.trolltech.com/faq/tech.html COPYRIGHT
Copyright 1992-2001 Trolltech AS, http://www.trolltech.com. See the license file included in the distribution for a complete license statement. AUTHOR
Generated automatically from the source code. BUGS
If you find a bug in Qt, please report it as described in http://doc.trolltech.com/bughowto.html. Good bug reports help us to help you. Thank you. The definitive Qt documentation is provided in HTML format; it is located at $QTDIR/doc/html and can be read using Qt Assistant or with a web browser. This man page is provided as a convenience for those users who prefer man pages, although this format is not officially supported by Trolltech. If you find errors in this manual page, please report them to qt-bugs@trolltech.com. Please include the name of the manual page (qsemaphore.3qt) and the Qt version (3.1.1). Trolltech AS 9 December 2002 QSemaphore(3qt)
All times are GMT -4. The time now is 05:55 PM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy