My favorites | Sign in
Logo
                
Details: Show all Hide all

Last 30 days

  • Dec 02, 2009
    issue 13 (Will this work with Snow Leopard? 10.6?) commented on by ebnozn   -   I can also confirm - MBA with 10.6. All menu options non-responsive (although they do spawn some additional threads), although app opens and displays the "correct" # of days to expiration.
    I can also confirm - MBA with 10.6. All menu options non-responsive (although they do spawn some additional threads), although app opens and displays the "correct" # of days to expiration.
  • Nov 30, 2009
    issue 13 (Will this work with Snow Leopard? 10.6?) commented on by tarin.a.moore   -   I can confirm this behavior. The application opens fine and displays where is should however is unresponsive to all menu options including "Quit". To remove the application required opening Terminal and using "kill" to terminate the process. Tarin Moore ACTC Engineer NextByte Brisbane
    I can confirm this behavior. The application opens fine and displays where is should however is unresponsive to all menu options including "Quit". To remove the application required opening Terminal and using "kill" to terminate the process. Tarin Moore ACTC Engineer NextByte Brisbane

Earlier this year

  • Nov 24, 2009
    issue 15 (Change password routine won't work in non-english system) commented on by michel.guillet   -   Actually, I just found a bug in my code :-D. Here is a corrected version on set_change() set buttonTitle to (localized string "Change Password…") tell application "System Preferences" set current pane to pane id "com.apple.preferences.users" reveal anchor "passwordPref" of current pane activate tell application "System Events" tell application process "System Preferences" click button buttonTitle of tab group 1 of first window end tell end tell end tell end set_change
    Actually, I just found a bug in my code :-D. Here is a corrected version on set_change() set buttonTitle to (localized string "Change Password…") tell application "System Preferences" set current pane to pane id "com.apple.preferences.users" reveal anchor "passwordPref" of current pane activate tell application "System Events" tell application process "System Preferences" click button buttonTitle of tab group 1 of first window end tell end tell end tell end set_change
  • Nov 24, 2009
    issue 15 (Change password routine won't work in non-english system) reported by michel.guillet   -   The method set_change() is only valid on English system since it's asking to click on the "Change Password..." button. I developed a workaround for this issue. Here is my new code for set_change : on set_change() tell application "System Preferences" set current pane to pane id "com.apple.preferences.users" reveal anchor "passwordPref" of current pane activate tell application "System Events" tell application process "System Preferences" click button (localized string "Change Password…") of tab group 1 of first window end tell end tell end tell end set_change Then, I added language folders to the project : English.lproj German.lproj French.lproj For each language, I created a file 'Localizable.strings', with this content : "Change Password…" = "Modifier le mot de passe..."; // Name of the button in the Account pref pane Could be useful to some of us ;-) Regards. Michel
    The method set_change() is only valid on English system since it's asking to click on the "Change Password..." button. I developed a workaround for this issue. Here is my new code for set_change : on set_change() tell application "System Preferences" set current pane to pane id "com.apple.preferences.users" reveal anchor "passwordPref" of current pane activate tell application "System Events" tell application process "System Preferences" click button (localized string "Change Password…") of tab group 1 of first window end tell end tell end tell end set_change Then, I added language folders to the project : English.lproj German.lproj French.lproj For each language, I created a file 'Localizable.strings', with this content : "Change Password…" = "Modifier le mot de passe..."; // Name of the button in the Account pref pane Could be useful to some of us ;-) Regards. Michel
  • Nov 24, 2009
    issue 8 (Password Monitor keeps popping up after I click "Change Pass...) commented on by michel.guillet   -   Hi, Please look at the issue number 5 : it looks like it is the same trouble. Regards.
    Hi, Please look at the issue number 5 : it looks like it is the same trouble. Regards.
  • Nov 24, 2009
    issue 5 (Password reminder notice claims focus) commented on by michel.guillet   -   Hello, I did some research in the source code. If you want to get rid of this issue, you need to suppress the line number 270 (activate) in Password Monitor.applescript. Recompile, you should be fine. Regards.
    Hello, I did some research in the source code. If you want to get rid of this issue, you need to suppress the line number 270 (activate) in Password Monitor.applescript. Recompile, you should be fine. Regards.
  • Nov 11, 2009
    issue 14 (Feature Request: Is it possible to get notification and chan...) reported by refuxx   -   We get email via the main company Exchange servers. However I don't want to be on the domain, the problem with not being on the domain is I'll never get password expiration warnings.... Would it be possible to enhance the tool to manually define my user/pass/domain info and then be able to monitor my password expiration? Thanks for any info!
    We get email via the main company Exchange servers. However I don't want to be on the domain, the problem with not being on the domain is I'll never get password expiration warnings.... Would it be possible to enhance the tool to manually define my user/pass/domain info and then be able to monitor my password expiration? Thanks for any info!
  • Nov 02, 2009
    issue 13 (Will this work with Snow Leopard? 10.6?) reported by waltdobbjr   -   What steps will reproduce the problem? 1. Upgrade to 10.6 2. Had 10.5, it worked great... had been testing it for our work environment What is the expected output? What do you see instead? Password Monitor still counts the days, but Checking for Updates, Password Change, or Preferences doesn't respond within the Status Bar. It worked great in 10.5, but not 10.6 What version of the product are you using? On what operating system? iMac 20 inch, 10.6 Please provide any additional information below. I can also be emailed at walter.dobbins@cchmc.org
    What steps will reproduce the problem? 1. Upgrade to 10.6 2. Had 10.5, it worked great... had been testing it for our work environment What is the expected output? What do you see instead? Password Monitor still counts the days, but Checking for Updates, Password Change, or Preferences doesn't respond within the Status Bar. It worked great in 10.5, but not 10.6 What version of the product are you using? On what operating system? iMac 20 inch, 10.6 Please provide any additional information below. I can also be emailed at walter.dobbins@cchmc.org
  • Oct 16, 2009
    issue 9 (System log gets polluted) commented on by michel.guillet   -   Ok, I found the real issue... The function 'number_to_string' is supposed to convert a number into a string. Unfortunately the decimal separator used is the one set by regional settings. And for a french guy like me it is a comma instead of a dot. So I create a dirty way to get rid of that : on decimal_separator() if (4.2 as string = "4.2") then return "." else return "," end if end decimal_separator on number_to_string(theNumber) set theNumber to theNumber as string if theNumber contains "E+" then set x to the offset of decimal_separator() in theNumber set y to the offset of "+" in theNumber [...]
    Ok, I found the real issue... The function 'number_to_string' is supposed to convert a number into a string. Unfortunately the decimal separator used is the one set by regional settings. And for a french guy like me it is a comma instead of a dot. So I create a dirty way to get rid of that : on decimal_separator() if (4.2 as string = "4.2") then return "." else return "," end if end decimal_separator on number_to_string(theNumber) set theNumber to theNumber as string if theNumber contains "E+" then set x to the offset of decimal_separator() in theNumber set y to the offset of "+" in theNumber [...]
  • Oct 08, 2009
    issue 12 (could not write domain com.apple.loginwindow; exitiing) reported by seanoutside   -   What steps will reproduce the problem? 1. Non administrator account 2. 3. What is the expected output? What do you see instead? What version of the product are you using? On what operating system? password monitor 1.5.4/OS 10.5.8 Please provide any additional information below. Console reports this warning message every 3 seconds or so. Giving the user administrator privileges and restarting the machine solves the issue. I believe that Password Monitor wants to write a string entry LoginWindowText in the com.apple.loginwindow.plist file. I have the preference Display Notification At Login Window unchecked.
    What steps will reproduce the problem? 1. Non administrator account 2. 3. What is the expected output? What do you see instead? What version of the product are you using? On what operating system? password monitor 1.5.4/OS 10.5.8 Please provide any additional information below. Console reports this warning message every 3 seconds or so. Giving the user administrator privileges and restarting the machine solves the issue. I believe that Password Monitor wants to write a string entry LoginWindowText in the com.apple.loginwindow.plist file. I have the preference Display Notification At Login Window unchecked.
  • Sep 29, 2009
    issue 11 (Menu options unresponsive in Snow Leopard) changed by pmbuko   -   Noticed this was a duplicate.
    Status: Duplicate
    Noticed this was a duplicate.
    Status: Duplicate
  • Sep 29, 2009
    issue 10 (Doesn't work with Snow Leopard) commented on by pmbuko   -   Issue 11 has been merged into this issue.
    Issue 11 has been merged into this issue.
  • Sep 29, 2009
    issue 11 (Menu options unresponsive in Snow Leopard) reported by pmbuko   -   What steps will reproduce the problem? 1. Run Password Monitor on a computer running Snow Leopard. 2. Select any menu item. What is the expected output? What do you see instead? Expect the selected menu item to spawn a window, or quit, or... but nothing happens.
    What steps will reproduce the problem? 1. Run Password Monitor on a computer running Snow Leopard. 2. Select any menu item. What is the expected output? What do you see instead? Expect the selected menu item to spawn a window, or quit, or... but nothing happens.
  • Sep 24, 2009
    issue 10 (Doesn't work with Snow Leopard) reported by bobalooie   -   What steps will reproduce the problem? 1. install Snow Leopard 2. re-Installed PM 1.1.54 3. What is the expected output? What do you see instead? None of the menu items work. but it still shows days left till password change What version of the product are you using? On what operating system? 1.1.54 OSX 10.6.1 Please provide any additional information below. I love this app. please fix it so the love can continue!
    What steps will reproduce the problem? 1. install Snow Leopard 2. re-Installed PM 1.1.54 3. What is the expected output? What do you see instead? None of the menu items work. but it still shows days left till password change What version of the product are you using? On what operating system? 1.1.54 OSX 10.6.1 Please provide any additional information below. I love this app. please fix it so the love can continue!
  • Sep 15, 2009
    issue 7 (ARD Integration) commented on by reed.laughlin   -   The com.thomsontown.pwdmon.plist file can be modified with the defaults command, which can be pushed out via ARD, or you could just push the plist file itself out. However, the app doesn't seem to look for an already existing preference file in /Library/Preferences when it doesn't find one in ~/Library/Preferences. I think that is a defect, not sure if that is what you are referring to or not. I guess I might as well submit a ticket on that.
    The com.thomsontown.pwdmon.plist file can be modified with the defaults command, which can be pushed out via ARD, or you could just push the plist file itself out. However, the app doesn't seem to look for an already existing preference file in /Library/Preferences when it doesn't find one in ~/Library/Preferences. I think that is a defect, not sure if that is what you are referring to or not. I guess I might as well submit a ticket on that.
  • Sep 03, 2009
    issue 9 (System log gets polluted) reported by michel.guillet   -   Every 4-5 seconds, system log get polluted with : Sep 3 11:26:02 myMac Password Monitor[734]: "usage: date [-jnu] [-d dst] [-r seconds] [-t west] [-v[+|-]val[ymwdHMS]] ... ^M [-f fmt date | [[[mm]dd]HH]MM[[cc]yy][.ss]] [+format] (Error: 1)
    Every 4-5 seconds, system log get polluted with : Sep 3 11:26:02 myMac Password Monitor[734]: "usage: date [-jnu] [-d dst] [-r seconds] [-t west] [-v[+|-]val[ymwdHMS]] ... ^M [-f fmt date | [[[mm]dd]HH]MM[[cc]yy][.ss]] [+format] (Error: 1)
  • Aug 07, 2009
    issue 8 (Password Monitor keeps popping up after I click "Change Pass...) reported by bpe...@russreid.com   -   What steps will reproduce the problem? 1. Wait for Password Monitor to prompt for password change 2. Click on "Change Password" 3. What is the expected output? What do you see instead? Should open change password pane of accounts sys prefs and allow you to change password. Instead, opens change password pane and then Password monitor reappears, taking focus so you can't type in a new password. Further attempts to click "change password" in Password monitor continues this loop until you hit "Remind me Later" What version of the product are you using? On what operating system? 1.1.52 OSX10.5.7 MacBookPro 2.66Ghz Please provide any additional information below. See screenshot of sys prefs panels opened by Password monitor yet it stays in front...
    What steps will reproduce the problem? 1. Wait for Password Monitor to prompt for password change 2. Click on "Change Password" 3. What is the expected output? What do you see instead? Should open change password pane of accounts sys prefs and allow you to change password. Instead, opens change password pane and then Password monitor reappears, taking focus so you can't type in a new password. Further attempts to click "change password" in Password monitor continues this loop until you hit "Remind me Later" What version of the product are you using? On what operating system? 1.1.52 OSX10.5.7 MacBookPro 2.66Ghz Please provide any additional information below. See screenshot of sys prefs panels opened by Password monitor yet it stays in front...
  • Jul 13, 2009
    issue 7 (ARD Integration) reported by meagan.radford   -   What version of the product are you using? On what operating system? Version 1.1.54 Please provide any additional information below. Is there the ability to use ARD to change the preferences file for Password-Expiration-Monitor?
    What version of the product are you using? On what operating system? Version 1.1.54 Please provide any additional information below. Is there the ability to use ARD to change the preferences file for Password-Expiration-Monitor?
  • Jun 15, 2009
    issue 6 (AD policy and Keychain password) reported by roeland.de.windt   -   I haven't tried PEM yet, but have a couple of questions beforehand. 1. How does the manual setting for "After how many days are you required..." influence an Active Directory Policy that's set to 90 days? What if PEM is set lower? Shouldn't the setting be grayed-out if an AD policy is found? 2. If "Display Expiration Notice..." is set, and the users chooses to change at the login prompt (is this possible?), will PEM also change the User's Keychain password? Or do I still need a tool like KeychainMinder? Thank you, Roel
    I haven't tried PEM yet, but have a couple of questions beforehand. 1. How does the manual setting for "After how many days are you required..." influence an Active Directory Policy that's set to 90 days? What if PEM is set lower? Shouldn't the setting be grayed-out if an AD policy is found? 2. If "Display Expiration Notice..." is set, and the users chooses to change at the login prompt (is this possible?), will PEM also change the User's Keychain password? Or do I still need a tool like KeychainMinder? Thank you, Roel
  • Jun 12, 2009
    issue 4 (Support for Open Directory) Status changed by thomsontown   -  
    Status: Started
    Status: Started
  • Jun 12, 2009
    issue 2 (User Authentication for Preferences) Labels changed by thomsontown   -  
    Labels: Type-Enhancement Type-Defect
    Labels: Type-Enhancement Type-Defect
  • Jun 12, 2009
    issue 4 (Support for Open Directory) changed by thomsontown   -  
    Status: Accepted
    Labels: Type-Enhancement Type-Defect
    Status: Accepted
    Labels: Type-Enhancement Type-Defect
  • Jun 12, 2009
    issue 5 (Password reminder notice claims focus) Owner changed by thomsontown   -  
    Owner: thomsontown
    Owner: thomsontown
  • Jun 12, 2009
    issue 4 (Support for Open Directory) Owner changed by thomsontown   -  
    Owner: thomsontown
    Owner: thomsontown
  • Jun 12, 2009
    issue 3 (Shows "-1434" in Menubar) Status changed by thomsontown   -  
    Status: Invalid
    Status: Invalid
  • Jun 12, 2009
    issue 2 (User Authentication for Preferences) Status changed by thomsontown   -  
    Status: Started
    Status: Started
  • Jun 12, 2009
    issue 5 (Password reminder notice claims focus) Status changed by thomsontown   -   Thanks for the feedback. I will see what I can do.
    Status: Started
    Thanks for the feedback. I will see what I can do.
    Status: Started
  • Jun 11, 2009
    PasswordMonitor154.zip (Password Monitor (build 1.1.54) ) file uploaded by thomsontown   -  
    Labels: OpSys-OSX Featured
    Labels: OpSys-OSX Featured
  • Jun 11, 2009
    PasswordMonitor.pdf (Password Monitor Documentation (06-11-09)) file uploaded by thomsontown   -  
    Labels: Featured
    Labels: Featured
  • Jun 11, 2009
    pwdmon.xml (Distribution Feed) file uploaded by thomsontown   -  
    Labels: Deprecated
    Labels: Deprecated
  • May 29, 2009
    issue 5 (Password reminder notice claims focus) reported by Robert.I.Morton   -   What steps will reproduce the problem? 1. Have a password that is expiring in 10 days so a warning is showing 2. Try to have the focus on anything but the warning window What is the expected output? What do you see instead? I would expect the warning window to not reclaim focus over and over. Update the menu bar instead. What version of the product are you using? On what operating system? 1.1.52 Please provide any additional information below. This was very noticeable when my screen saver was active. I had to carefully type my password in to unlock the screen because Password Monitor kept stealing the focus (which Apple should not allow anything to steal the focus from the screen lock password, but that is not your issue).
    What steps will reproduce the problem? 1. Have a password that is expiring in 10 days so a warning is showing 2. Try to have the focus on anything but the warning window What is the expected output? What do you see instead? I would expect the warning window to not reclaim focus over and over. Update the menu bar instead. What version of the product are you using? On what operating system? 1.1.52 Please provide any additional information below. This was very noticeable when my screen saver was active. I had to carefully type my password in to unlock the screen because Password Monitor kept stealing the focus (which Apple should not allow anything to steal the focus from the screen lock password, but that is not your issue).
  • May 19, 2009
    issue 4 (Support for Open Directory) reported by jasonatownsend   -   It would be great if this could also support Open Directory. You can get the password age using the pwpolicy command line tool, like so: % pwpolicy -u testuser -n /LDAPv3/myserver.example.com --get-effective-policy Look for passwordLastSetTime, which I think is in seconds since the Unix epoch (Jan 1, 1970).
    It would be great if this could also support Open Directory. You can get the password age using the pwpolicy command line tool, like so: % pwpolicy -u testuser -n /LDAPv3/myserver.example.com --get-effective-policy Look for passwordLastSetTime, which I think is in seconds since the Unix epoch (Jan 1, 1970).
  • May 15, 2009
    pwdmon.xml (Distribution Feed) file uploaded by thomsontown   -  
    Labels: Deprecated
    Labels: Deprecated
  • May 15, 2009
    pwdmon.xml (Distribution Feed) file uploaded by thomsontown
  • May 15, 2009
    pwdmon.xml (XML) file uploaded by thomsontown
  • May 14, 2009
    pwdmon.xml (Distribution Feed) file uploaded by thomsontown   -  
    Labels: Deprecated
    Labels: Deprecated
  • May 14, 2009
    PasswordMonitor152.zip (Password Monitor (build 1.1.52) ) file uploaded by thomsontown   -  
    Labels: OpSys-OSX Featured
    Labels: OpSys-OSX Featured
  • May 14, 2009
    PasswordMonitor.pdf (Password Monitor Documentation (05-14-09)) file uploaded by thomsontown   -  
    Labels: Featured
    Labels: Featured
  • May 14, 2009
    r60 (becuase) committed by thomsontown   -   becuase
    becuase
  • May 14, 2009
    r59 (1.1.52 - No changes, just trying to get SVN to cooperate. ) committed by thomsontown   -   1.1.52 - No changes, just trying to get SVN to cooperate.
    1.1.52 - No changes, just trying to get SVN to cooperate.
  • May 14, 2009
    r58 (Something with SVN is not working to update this file/folder...) committed by thomsontown   -   Something with SVN is not working to update this file/folder. I'm hoping deleting it will allow me to upload and keep synchronized. --AMT
    Something with SVN is not working to update this file/folder. I'm hoping deleting it will allow me to upload and keep synchronized. --AMT
  • May 14, 2009
    r57 (1.1.52 - Added Password Expiration Warning panel that will r...) committed by thomsontown   -   1.1.52 - Added Password Expiration Warning panel that will remind the user to change his or her password soon.
    1.1.52 - Added Password Expiration Warning panel that will remind the user to change his or her password soon.
  • May 14, 2009
    r56 (1.1.52 - Added Password Expiration Warning panel that will r...) committed by thomsontown   -   1.1.52 - Added Password Expiration Warning panel that will remind the user to change his or her password soon.
    1.1.52 - Added Password Expiration Warning panel that will remind the user to change his or her password soon.
  • May 14, 2009
    r55 (1.1.52 - Added Password Expiration Warning panel that will r...) committed by thomsontown   -   1.1.52 - Added Password Expiration Warning panel that will remind the user to change his or her password soon.
    1.1.52 - Added Password Expiration Warning panel that will remind the user to change his or her password soon.
  • May 14, 2009
    r54 (1.1.52 - Added Password Expiration Warning panel that will r...) committed by thomsontown   -   1.1.52 - Added Password Expiration Warning panel that will remind the user to change his or her password soon.
    1.1.52 - Added Password Expiration Warning panel that will remind the user to change his or her password soon.
  • May 14, 2009
    r53 (I had to delete the old English.lproj folder becuase it was ...) committed by thomsontown   -   I had to delete the old English.lproj folder becuase it was not properly synchronizing under SVN.
    I had to delete the old English.lproj folder becuase it was not properly synchronizing under SVN.
  • May 14, 2009
    r52 (Something with SVN is not working to update this file/folder...) committed by thomsontown   -   Something with SVN is not working to update this file/folder. I'm hoping deleting it will allow me to upload and keep synchronized. --AMT
    Something with SVN is not working to update this file/folder. I'm hoping deleting it will allow me to upload and keep synchronized. --AMT
  • May 08, 2009
    issue 1 (SMB automount) Status changed by thomsontown   -   I cannot duplicate this error. If you know a way I can, please let me know. Thanks.
    Status: Invalid
    I cannot duplicate this error. If you know a way I can, please let me know. Thanks.
    Status: Invalid
  • May 08, 2009
    issue 2 (User Authentication for Preferences) Owner changed by thomsontown   -  
    Owner: thomsontown
    Owner: thomsontown
  • May 08, 2009
    issue 2 (User Authentication for Preferences) Status changed by thomsontown   -  
    Status: Accepted
    Status: Accepted
 
Hosted by Google Code