I am testing a highly-customized web application in Internet Explorer 10 on Windows 8, since it is an up and coming release, and will likely be using my application some day. Take a look at this sample screenshot of some text input controls from the application:
Is there a way, either within HTML or CSS, to remove the action icons that are located to the right of the text and password input controls, or is the an OS-specific feature that cannot be disabled?
Thank you for your time.
I have forgotten the administrator password of my Windows XP installation and locked out. Is there a way to reset it? I do have physical access to the PC.
I'm trying to write an upstart file for OpenConnect. The task is pretty simple, but I'm stuck because I don't want to provide the username and password in a config file, but prompt the user to provide them each time.
The upstart file, placed in /etc/init/openconnect.conf is
exec /usr/sbin/openconnect --script=/etc/vpnc/vpnc-script my-gw.example.com
However, when I execute
start openconnect
the process is backgrounded immediately and I get no chance to provide input.
How can I make this upstart job ask the user for input?
I have a PC with windows XP that administrator passowrd is forgeten and no other user account is created. How to set or recover or remove administrator password.
Hi,
I tried to download the rpm for vim from ftp://public.dhe.ibm.com/aix/freeSoftware/aixtoolbox/RPMS/ppc/vim/vim-minimal-6.3-1.aix5.1.ppc.rpm . I am using "ftp" command in AIX.
when I use,
open public.dhe.ibm.com
It's prompting for username/password. But no information regarding this is given on the linked page. How do I download the rpm using "ftp" command?. Thanks.
I ordered a VPS today, and am about to upload my website.
It uses java, mysql, php etc...
However, I need to password protect the site at first...
I use Ubuntu 9.10 and have installed LAMP just now.
How can I easiest do this?
Thanks
PS: Have problem with the serverfault website, thats why I am posting this here. sorry.
...when logged into a Server via remote Desktop?
I see no way to Access Windows security. In "old" 2008 R2 there was a "Windows Security" entry in the start menu when coming via rdp.
In the new Metro Start Menu, the username context menu allows me to lock the Computer or log out - but not Change the Password.
Yes, I can go through user Management, but this is not something I want People to do ;)
I want to configure Reporting Services 2008 to use a custom defined username and password for access. I read that I must set reporting services to do basic authentication :
<AuthenticationTypes>
<RSWindowsBasic/>
</AuthenticationTypes>
But I didn't find specified a location where I might create usernames and passwords.
I have scripted a process that involves updating symbolic links on files located on 3 different machines. On those machines exists 4 users each, who each need to have these links updated.
Using su, is there a way to pass the password argument to the command on a single line, without invoking sudo as the users will not have admin rights?
My only alternative solution at this point is to ssh around, however I would like to be able to do this without hardcoding in a bunch of hosts/ips.
The computer is a acer aspire 7720g laptop. When windows want me to input my password, the only keys working is caps lock, the numpad and the m key(and the m key works like a combined m and enter key). I did spill some water on the keyboard yesterday but the same thing happens with usb keyboards. I disabled the quick boot in the bios, making it go through every test at bootup, which resulted in continous beeping from the computer. Anyone know how to solve this?
Hello,
I am trying to write a script which includes disk defragmentation as one of its steps. defrag needs administrative rights to work. I tried to use runas /user:Administrator, but it always asked me for password (even though there isn't one set).
The script needs to run unattended for a long time, and it needs to be started from standard user account (it is actually being run by cygwin), so I'd like to get rid of that prompt. Is this possible?
Thanks,
I have custom domain with gmail, and successfully configured gmail account to receive mail in blackberry. However, after deleting the account, I am not able to configure again, and it keep on repeating same problem: invalid email account.
I have changed the password, and also did unlocking of captcha many times, but it just doesn't connect with blackberry account.
Can I get some advice?
I would like to configure a task like "child control software",
so it would hibernate the pc at certain times.
Is it possible to prevent modification (here: pausing) of
a task through requiring the entering of the admin password to modify,
EVEN THOUGH the currently-logged-in (and only) user is
the admin account itself?
(Do you know of any child control software that does NOT require
an additional account yet is able to hibernate the system at
certain times?)
Thanks a lot!
I am trying to set up Opennebula. I want to set up my local host so that I can log into my remote host without having to use the password.
I have followed the instructions in the "Secure Shell Access" section in the installation instructions. I can not log into my remote host from my local host, but I can log into my local host from my remote host.
Not sure what's going on.
Any help would be appreciated.
Thanks
Sometimes you may want to undo your choice of "Never for this site" when Chrome asks if you want to save a password. But on the mac clicking on the "Show saved passwords" in the Preferences opens the Keychain Access app and you have no way to remove that site from the exceptions list.
This is obviously a bug.
I suppose that deleting all saved passwords will do but I don't want to delete them all. Is there any other workaround? (Chrome 6.0.472.63)
We are setting up a Windows Server 2008 R2 domain. When we create a user within AD, the checkbox labeled "User cannot change password" in the Account tab is unchecked for every user we create. Can this be changed so for each user we create this is checked by default?
We are busy developing a Java web service for a client. There are two possible choices:
Store the encrypted user name / password on the web service client. Read from a config. file on the client side, decrypt and send.
Store the encrypted user name / password on the web server. Read from a config. file on the web server, decrypt and use in the web service.
The user name / password is used by the web service to access a third-party application.
The client already has classes that provide this functionality but this approach involves sending the user name / password in the clear (albeit within the intranet). They would prefer storing the info. within the web service but don't really want to pay for something they already have. (Security is not a big consideration because it's only within their intranet).
So we need something quick and easy in Java.
Any recommendations?
The server is Tomkat 5.5. The web service is Axis2.
What encrypt / decrypt package should we use?
What about a key store?
What configuration mechanism should we use?
Will this be easy to deploy?
my perl cgi script I have the password/user on clear text and want to hide it or the user enter the credential interactively.is that possible? here is my code. please any help!! i am very new for perl.
#!/usr/local/bin/expect
#######################################################################################################
# Input: It will handle two arguments -> a device and a show command.
#######################################################################################################
# ######### Start of Script ######################
# #### Set up Timeouts - Debugging Variables
log_user 0
set timeout 10
set userid "USER"
set password "PASS"
# ############## Get two arguments - (1) Device (2) Command to be executed
set device [lindex $argv 0]
set command [lindex $argv 1]
spawn /usr/local/bin/ssh -l $userid $device
match_max [expr 32 * 1024]
expect {
-re "RSA key fingerprint" {send "yes\r"}
timeout {puts "Host is known"}
}
expect {
-re "username: " {send "$userid\r"}
-re "(P|p)assword: " {send "$password\r"}
-re "Warning:" {send "$password\r"}
-re "Connection refused" {puts "Host error -> $expect_out(buffer)";exit}
-re "Connection closed" {puts "Host error -> $expect_out(buffer)";exit}
-re "no address.*" {puts "Host error -> $expect_out(buffer)";exit}
timeout {puts "Timeout error. Is device down or unreachable?? ssh_expect";exit}
}
expect {
-re "\[#>]$" {send "term len 0\r"}
timeout {puts "Error reading prompt -> $expect_out(buffer)";exit}
}
expect {
-re "\[#>]$" {send "$command\r"}
timeout {puts "Error reading prompt -> $expect_out(buffer)";exit}
}
expect -re "\[#>]$"
set output $expect_out(buffer)
send "exit\r"
puts "$output\r\n"