Where to store the password data for  exiting user in Elgamal Algorithm

hi,
i am doing a project in Intelligent security in java using Elagamal algorithm. The feature of Elgamal is that the password is not stored in database . Then where is the password is stored to check for a existing user .
If i am an existing user then when i type the username and password then it should check or compare and tell that password is right or wrong . so where is the password is stored to compare ?? please give me the coding in java .
i need the coding immediately , of how to get the password and to store and then to compare where the user is correct else message should display "type the correct password".
Given below is my Main window coding plz help me where to include the coding,
     This simple extension of the java.awt.Frame class
     contains all the elements necessary to act as the
     main window of an application.
// LOGIN WINDOW ( FIRST WINDOW ) FOR LOGIN AND EXISTING USER
import java.awt.*;
import java.io.*;
import java.net.*;
import java.util.*;
import java.sql.*;
import java.math.*;
import java.security.*;
import java.io.IOException;
import javax.crypto.Cipher;
import javax.crypto.IllegalBlockSizeException;
import javax.crypto.KeyGenerator;
import javax.crypto.SecretKey;
public class Smart extends Frame
     public Smart()
          // This code is automatically generated by Visual Cafe when you add
          // components to the visual environment. It instantiates and initializes
          // the components. To modify the code, only use code syntax that matches
          // what Visual Cafe can generate, or Visual Cafe may be unable to back
          // parse your Java file into its visual environment.
          //{{INIT_CONTROLS
          setLayout(null);
          setBackground(new java.awt.Color(255,247,192));
          setSize(1200,900);
// 157,135,178
          setVisible(false);
          label1.setText("USERID");
          add(label1);
          label1.setFont(new Font("Dialog", Font.PLAIN, 14));
          label1.setBounds(315,180,84,48);
          label2.setText("PASSWORD");
          add(label2);
          label2.setFont(new Font("Dialog", Font.PLAIN, 14));
          label2.setBounds(315,260,100,40);
          textField1.setBounds(430,180,216,36);
          //textField1.setBackground(new java.awt.Color(196,197,233));//textfieldcolor
          add(textField1);
          textField2.setEchoChar('*');
          //textField2.setBackground(new java.awt.Color(196,197,233));
          add(textField2);
          textField2.setBounds(430,260,213,36);
          button1.setLabel("SUBMIT");
          add(button1);
          button1.setBackground(new java.awt.Color(196,197,233));
          button1.setBounds(320,360,120,40);
          button2.setLabel("CLEAR");
          add(button2);
          button2.setBackground(new java.awt.Color(196,197,233));
          button2.setBounds(520,360,120,40);
          label3.setText("REGISTRATION FORM");
          add(label3);
          label3.setFont(new Font("Dialog", Font.BOLD, 20));
          label3.setBounds(324,54,550,80);
          button3.setLabel("NEW USER REGISTRATION");
          add(button3);
          button3.setBackground(new java.awt.Color(196,197,233));
          button3.setBounds(369,450,232,40);
          //add(textArea1);
          //textArea1.setBounds(0,360,576,52);
          setTitle("LOGIN PHASE Application");
          /*int mStrength = 16;
          SecureRandom mSecureRandom = new SecureRandom();
          p = new BigInteger(mStrength, 16, mSecureRandom);*/
          //{{INIT_MENUS
          //{{REGISTER_LISTENERS
          SymWindow aSymWindow = new SymWindow();
          this.addWindowListener(aSymWindow);
          SymAction lSymAction = new SymAction();
          button1.addActionListener(lSymAction);
          button2.addActionListener(lSymAction);
          button3.addActionListener(lSymAction);
     public Smart(String title)
          this();
          setTitle(title);
* Shows or hides the component depending on the boolean flag b.
* @param b if true, show the component; otherwise, hide the component.
* @see java.awt.Component#isVisible
public void setVisible(boolean b)
          if(b)
          setLocation(50, 50);
          super.setVisible(b);
     public static void main(String args[])
     try
               //Create a new instance of our application's frame, and make it visible.
          (new Smart()).setVisible(true);
          catch (Throwable t)
               System.err.println(t);
               t.printStackTrace();
               // Ensure the application exits with an error condition.
               System.exit(1);
          public void addNotify()
          // Record the size of the window prior to calling parents addNotify.
          Dimension d = getSize();
          super.addNotify();
          if (fComponentsAdjusted)
               return;
          // Adjust components according to the insets
          setSize(getInsets().left + getInsets().right + d.width, getInsets().top + getInsets().bottom + d.height);
          Component components[] = getComponents();
          for (int i = 0; i < components.length; i++)
               Point p = components.getLocation();
               p.translate(getInsets().left, getInsets().top);
               components[i].setLocation(p);
          fComponentsAdjusted = true;
     // Used for addNotify check.
     boolean fComponentsAdjusted = false;
     //{{DECLARE_CONTROLS
     java.awt.Button button1 = new java.awt.Button();
     java.awt.Button button2 = new java.awt.Button();
     java.awt.Label label1 = new java.awt.Label();
     java.awt.Label label2 = new java.awt.Label();
     java.awt.Label label3 = new java.awt.Label();
     java.awt.Button button3 = new java.awt.Button();
     java.awt.TextField textField1 = new java.awt.TextField();
     java.awt.TextField textField2 = new java.awt.TextField();
     java.awt.TextArea textArea1 = new java.awt.TextArea();
     //BigInteger p;
     //{{DECLARE_MENUS
     class SymWindow extends java.awt.event.WindowAdapter
          public void windowClosing(java.awt.event.WindowEvent event)
               Object object = event.getSource();
               if (object == Smart.this)
                    Smart_WindowClosing(event);
     void Smart_WindowClosing(java.awt.event.WindowEvent event)
          System.exit(0);
     class SymAction implements java.awt.event.ActionListener
          public void actionPerformed(java.awt.event.ActionEvent event)
               Object object = event.getSource();
               if (object == button1)
                    button1_ActionPerformed(event);
               else if (object == button2)
                    button2_ActionPerformed(event);
               else if (object == button3)
                    button3_ActionPerformed(event);
     void button1_ActionPerformed(java.awt.event.ActionEvent event)
          //try{
          String ids = textField1.getText();
          String pss = textField2.getText();
          byte [] bt = ids.getBytes();
          BigInteger id = new BigInteger(bt);
          //by samy byte [] bts = pss.getBytes();
          //BigInteger ps = new BigInteger(bts);
     int mStrength = 16;
     SecureRandom mSecureRandom = new SecureRandom();
     BigInteger p = new BigInteger(mStrength, 16, mSecureRandom);
     System.out.println("p = "+p.toString(16));
     BigInteger g = new BigInteger(mStrength - 1, mSecureRandom);
     System.out.println("g= "+g.toString(16));
     BigInteger x = new BigInteger(mStrength - 1, mSecureRandom);
     System.out.println("x="+x.toString(16));
     //byte[] bt = id.getBytes();
     BigInteger idb = new BigInteger(bt);
     //System.out.println("id= "+idb.toString(16));
     BigInteger ps = idb.modPow(x, p);
     //String pw = new String("pass = "+ps.toByteArray());
     System.out.println("ps ="+ps.toString(16));
     BigInteger r =null;
BigInteger ONE = BigInteger.valueOf(1L);
BigInteger p_1 = p.subtract(ONE);
SecureRandom sr = new SecureRandom();
do {
r = new BigInteger(p.bitLength(), sr);
} while (r.compareTo(ONE) <= 0 || r.compareTo(p_1) >= 0);
     System.out.println("r= "+r.toString(16));
     BigInteger c1 =idb.modPow(r,p);
     System.out.println("c1= "+c1.toString(16));
     long time = System.currentTimeMillis();
     System.out.println("TIME ="+time);
     BigInteger one = new BigInteger( new Integer(1).toString());
     BigInteger T = new BigInteger( new Long(time).toString());
     BigInteger t =T.xor(ps);
     BigInteger t1 = t.mod(p.subtract(one));
     System.out.println("t="+t1.toString(16));
     BigInteger M = idb.modPow(t1, p);
     System.out.println("M="+M.toString(16));
     int rnd = r.intValue();
     BigInteger c2 =ps.modPow(r,p).multiply(M).mod(p);
     System.out.println("c2 ="+c2.toString(16));
     //(bia[0].modPow(a, p).modInverse(p)).multiply(bia[1]).mod(p);
     BigInteger val1 = (c1.modPow(x,p).modInverse(p)).multiply(c2).mod(p);
     BigInteger val2 = id.modPow(t1,p);
     System.out.println(val1.toString(16));
     System.out.println(val2.toString(16));
send s=new send();
// }catch( IOException e){
//System.out.println("Exception caught ") ; }     
//     catch( Exception e){
//System.out.println("Exception caught ") ; }               
     void button2_ActionPerformed(java.awt.event.ActionEvent event)
          textField1.setText("");
          textField2.setText("");
     void button3_ActionPerformed(java.awt.event.ActionEvent event)
     {   Security s1 = null;
          try
System.out.println("this is in Smart ");
     //Create a new instance of our application's frame, and make it visible.
          s1 = new Security();
          s1.setVisible(true);
          catch (Throwable t)
               System.err.println(t);
               t.printStackTrace();
               //Ensure the application exits with an error condition.
               System.exit(1);
          //s1.dispose();     

Hi SaMolPP,
You should try to use the existing ULS logging, following article is for 2010 but should also work in 2013 :
http://geekswithblogs.net/venkatx5/archive/2010/12/09/how-to-use-uls-in-sharepoint-2010-for-custom-code.aspx
No additional lists or databases needed.
Hope this helps

Similar Messages

  • Where to see the updated data for transaction IQ02.

    Hi All,
    I have to write the enhancement to update the transaction IQ02 by menas of BAPI or any FM.
    Before that i tried updating the equipemt view for the material numbar and serial numbar combination from transaction IQ02.
    how do i do it manually so that i can think of automating the same?
    Thnx in advance.

    The FM for this will
    STATUS_READ
    STATUS_UPDATE.
    The status will be change manually when you install the equipment in an installation . This is as regards Utilities industry.
    Hope this helps.
    regards
    dominic

  • Where to find the release dates for Universal software

    Can anyone point me in the direction of where I can get info on release dates of the Universal binary software and games.
    Also would Rosetta really slow up a game like The Sims2 or would I not notice?
    Chris

    Donnchaidh,
    Have a look here for some information on Universal Binary games.
    Joe
    iMac Intel Core Duo 20", 2 GB RAM, OWC 300 GB FW HD   Mac OS X (10.4.6)   eMac 1.42GHz, 1 GB RAM; iPod w/ video 30 GB

  • Where to store the servlet class files ?

    If, I store the class files for servlets under WEB-INF/classes folder,
              i get file not found exception while using WL 6.1 sp2. But, if i store
              the class file under DefaultWebApp folder, it works fine.
              Any help about where to store the class files for servlets would be
              great help.
              Thanks.
              hiren
              

    Copy Servlet in DefaultWebApp/Web-Inf/classes directory.
              Configure Servlet in web.xml deployment descriptor.
              <servlet>
              <servlet-name></servlet-name>
              <servlet-class></servlet-class>
              </servlet>
              <servlet>
              <servlet-name></servlet-name>
              <servlet-class></servlet-class>
              </servlet>
              <servlet-mapping>
              <servlet-name></servlet-name>
              <url-pattern></url-pattern>
              </servlet-mapping>
              hiren dossani wrote:
              > If, I store the class files for servlets under WEB-INF/classes folder,
              > i get file not found exception while using WL 6.1 sp2. But, if i store
              > the class file under DefaultWebApp folder, it works fine.
              > Any help about where to store the class files for servlets would be
              > great help.
              >
              > Thanks.
              >
              > --
              > hiren
              

  • Where to store the servlet classes

    can anyone tell me where to store the servlet classes(inside a package)in oracle9iAS used with oracle8i database ?
    Also how to deploy an ejb in oracle9iAS. should we have to use oracle8i deployment guide or any other procedure??
    thanks in advance

    Copy Servlet in DefaultWebApp/Web-Inf/classes directory.
              Configure Servlet in web.xml deployment descriptor.
              <servlet>
              <servlet-name></servlet-name>
              <servlet-class></servlet-class>
              </servlet>
              <servlet>
              <servlet-name></servlet-name>
              <servlet-class></servlet-class>
              </servlet>
              <servlet-mapping>
              <servlet-name></servlet-name>
              <url-pattern></url-pattern>
              </servlet-mapping>
              hiren dossani wrote:
              > If, I store the class files for servlets under WEB-INF/classes folder,
              > i get file not found exception while using WL 6.1 sp2. But, if i store
              > the class file under DefaultWebApp folder, it works fine.
              > Any help about where to store the class files for servlets would be
              > great help.
              >
              > Thanks.
              >
              > --
              > hiren
              

  • Where to store the url of a webpage for indexing and searching?

    Dear Java gurus,
    We have a set of html files stroing in a file system. We can use Lucene to index those files with two fields "path" and "content ". Then using Lucene we can search and the result will be the relevant content and its path (path in the file system).
    As each of these html file is a real web page, we know its url in Internet too. However, I don’t know where to store this real url and let Lucene to index not only the path, content but also this url. If this is possible, then the search result will display the url also.
    Do you have any idea about this ?
    This is the last obstacle for us to develop a small Google like search engine. We have already a crawler that works well.
    Thanks for any suggestions.
    Pengyou

    pengyou wrote:
    jschell wrote:
    pengyou wrote:
    However, if I just want store the html file in a file system for quich test purpose, how can I store the url and keep a link to the related file.Instead of storing the content in the database you instead store a file system location (either a path or a file url.)
    That file system location is where you store the content.Indeed, the file system location is where I store the content which I crawled from Internet. However, it is not the initial url from which I crawled this content. I would like to store the initial url of this content too. This is still a problem.No it isn't.
    You have two pieces of data: Url and content.
    If you want to store the content on the file system then your database table would have two columns: url and file_location.
    You then do the following
    1. Save the content to the file system. Derive a file path from that process.
    2. Write a record to the database consisting two data items : url and that file path.

  • Where should I store the password to SSL keystore?

    Hi experts.
    I implement JRF-WS client that will be secured using SSL.
    I set the proper Java System properties:
    javax.net.ssl.trustStore=<path to truststore>
    javax.net.ssl.trustStorePassword=<password to truststore>
    How should I store the password for keystore in client application?
    What is the right approach? (right = that fits Oracle security standard)
    And how should I distribute the truststore-truststorepassword pair?
    Thanks.

    Where does the client reside?
    If i understand correctly, its outside the container.
    Yes, outside the container
    If u r looking to store the certificate in the jks keystore and passing the password from JAVA_OPTIONS trustStorePassword, then my friend I am afraid u will have to pass it in clear text.
    Are there any other options to store server certificate on JSE client apart from JavaKeystore?
    Thanks.

  • How does Labview stores the binary data - The header, where the actual data starts etc.

    I have problem in reading the binary file which is written by labview. I wish to access the data (which is stored in binary format) in Matlab. I am not able to understand - how the data will be streamed in to binary file (the binary file format) when we save the data in to a binary format through Labview program. I am saving my data in binary format and I was not able to access the same data in Matlab.
    I found a couple of articles which discusses about converting Labview to Matlab but What I really wanna know is - How can I access the binary file in Matlab which is actually written in Labview?
    Once I know the format Labview uses to store its binary files, It may be easy for me to read the file in Matlab. I know that Labview stores the binary files in Big Endian format which is
    Base Address+0 Byte3
    Base Address+1 Byte2
    Base Address+2 Byte1
    Base Address+3 Byte0
    But I am really confused about the headers, where the actual data start. Hence I request someone to provide me data about - How Labview stores the Binary Data. Where does the original data start. Below attached is the VI that I am using for writing in to a binary file.
    Attachments:
    Acquire_Binary_LMV.vi ‏242 KB

    Hi Everybody!
    I have attached a VI (Write MAT file.vi - written in LabVIEW 7.1) that takes a waveform and directly converts it to a 2D array where the first column is the timestamps and the second column is the data points. You can then pass this 2D array of scalars directly to the Save Mat.vi. You can then read the .MAT file that is created directly from Matlab.
    For more information on this, you can reference the following document:
    Can I Import Data from MATLAB to LabVIEW or Vice Versa?
    http://digital.ni.com/public.nsf/websearch/2F8ED0F588E06BE1862565A90066E9BA?OpenDocument
    However, I would definitely recommend using the Matlab Script node (All Functions->Analyze->Mathematics->Formula->Matlab Script). In order to use the Matlab Script node, you must have Matlab installed on the same computer. Using the MatlabScript node, you can take data generated or acquired in LabVIEW and save it directly to a .mat (Matlab binary) file using the 'save' command (just like in Matlab). You can see this in example VI entitled MathScriptNode.vi - written in LabVIEW 7.1.
    I hope this helps!
    Travis H.
    LabVIEW R&D
    National Instruments
    Attachments:
    Write MAT file.zip ‏189 KB

  • Ok... i am trying to sign into my apple account in the itunes store on my ipod and i have all the correct data for my credit card and it says " your payment information does not match your banks records. try again or nenter a new payment method. " help me

    ok... i am trying to sign into my apple account in the itunes store on my ipod and i have all the correct data for my credit card and it says " your payment information does not match your banks records. try again or nenter a new payment method. " what does this mean and how can i fix it??

    - See:
    ]iTunes Store: My credit card's security code or zip code does not match my bank's records
    - If still problem contact iTunes by:
    Contact iTunes

  • From where to get "First day of the week" data for all the locales, is it present in CLDR spec 24?

    I am trying to get "First day of the week" data from CLDR spec24 but cannot find where to look for it in the spec. I need this data to calculate numeric value of "LOCAL day of the week".
    This data to implement "c" and "cc" day formats that equals numeric local day of the week.
    e.g if "First day of the week" data for a locale is 2 (Monday) , it means numeric value for local day of the week will be 1 if it is Monday that day, 2 if it is Tuesday that day and likewise.

    Hi
    If you want to week to be started with Sunday then use the following formula:
    TimestampAdd(SQL_TSI_DAY, 1-DAYOFWEEK(Date'@{var_Date}'), Date'@{var_Date}') if it's retail week(starts from Monday) then the follow below:
    TimestampAdd(SQL_TSI_DAY, 1-DAYOFWEEK(Date'@{var_Date}'), Date'@{var_Date}')
    I'm assuming var_Date is the presentation variable for prompt...
    Edited by: Kishore Guggilla on Jan 3, 2011 4:48 PM

  • I type the password in for my Apple Id account and when I go to the Apple Store when I make a purchase, it doesnt work?

    When I go to sign in, the password works for the settings. But when I go to the Itunes store and purcahse a song, it does not read the password. So my question is why or how can I make a purchase or get this fixed?

    What error message are you getting?
    Try resetting the password.
    After you reset the password you have to go to Settings>iTunes and App stores and sign out and sign back in with the new passwords before you can make a purchase.

  • HT201442 My ipod has been disabled for 22,777,704 mintues and when i try to restore it is says it cant be restored because the ipod is locked. there is no where to enter the password. i font have the computer it was originally synced with. help please!!

    My ipod has been disabled for 22,777,704 mintues and when i try to restore it is says it cant be restored because the ipod is locked. there is no where to enter the password. i font have the computer it was originally synced with. help please!!

    Hi saraali,
    Follow the instructions in the support article link below that best apply to your situation:
    http://support.apple.com/kb/HT1212
    Cheers,
    GB

  • Validate the posting date for profit centre documents actual/plan

    Hi,
    I have an requiremnt where we want system to validate the posting date for profit centre documents actual/plan, Functionality should be same as system check  posting period for FI documents maintained in OB52 and controlling cost centre documents posting period maintained in OKP1.
    For creating Profit centre document activity types are available in Tcode 0KEO.
    I have come across Exits EXIT_SAPLPC08_001 and  EXIT_SAPLPC08_002. But i am notsure whether we can use these and implement these.
    PLease suggest what can be done to achieve this.
    Regards,

    Hi,
    U can use subsititution and specify that the profit center could be your head office or the store as per your req...
    I think thats the only option we have..
    Cheers
    Raghu

  • Where to find the best application for cleaning out my MacBook Air with OS X 10.7.5? I've been using MacKeeper but believe it's slowing down my laptop considerable.

    where to find the best application for cleaning out my MacBook Air with OS X 10.7.5? I've been using MacKeeper but believe it's slowing down my laptop considerable. Thank you.

    How to maintain a Mac
    1. Make redundant backups, keeping at least one off site at all times. One backup is not enough. Don’t back up your backups; make them independent of each other. Don’t rely completely on any single backup method, such as Time Machine. If you get an indication that a backup has failed, don't ignore it.
    2. Keep your software up to date. In the Software Update preference pane, you can configure automatic notifications of updates to OS X and other Mac App Store products. Some third-party applications from other sources have a similar feature, if you don’t mind letting them phone home. Otherwise you have to check yourself on a regular basis. This is especially important for complex software that modifies the operating system, such as device drivers. Before installing any Apple update, you must check that all such modifications that you use are compatible.
    3. Don't install crapware, such as “themes,” "haxies," “add-ons,” “toolbars,” “enhancers," “optimizers,” “accelerators,” "boosters," “extenders,” “cleaners,” "doctors," "tune-ups," “defragmenters,” “firewalls,” "barriers," “guardians,” “defenders,” “protectors,” most “plugins,” commercial "virus scanners,” "disk tools," or "utilities." With very few exceptions, this stuff is useless, or worse than useless. Above all, avoid any software that purports to change the look and feel of the user interface.
    The more actively promoted the product, the more likely it is to be garbage. The most extreme example is the “MacKeeper” scam.
    As a rule, the only software you should install is that which directly enables you to do the things you use a computer for — such as creating, communicating, and playing — and does not modify the way other software works. Use your computer; don't fuss with it.
    Safari extensions, and perhaps the equivalent for other web browsers, are a partial exception to the above rule. Most are safe, and they're easy to get rid of if they don't work. Some may cause the browser to crash or otherwise malfunction.  Some are malicious. Use with caution, and install only well-known extensions from relatively trustworthy sources, such as the Safari Extensions Gallery.
    Never install any third-party software unless you know how to uninstall it. Otherwise you may create problems that are very hard to solve.
    4. Beware of trojans. A trojan is malicious software (“malware”) that the user is duped into installing voluntarily. Such attacks were rare on the Mac platform until sometime in 2011, but are now increasingly common, and increasingly dangerous.
    There is some built-in protection against downloading malware, but you can’t rely on it — the attackers are always at least one day ahead of the defense. You can’t rely on third-party protection either. What you can rely on is common-sense awareness — not paranoia, which only makes you more vulnerable.
    Never install software from an untrustworthy or unknown source. If in doubt, do some research. Any website that prompts you to install a “codec” or “plugin” that comes from the same site, or an unknown site, is untrustworthy. Software with a corporate brand, such as Adobe Flash Player, must be acquired directly from the developer. No intermediary is acceptable, and don’t trust links unless you know how to parse them. Any file that is automatically downloaded from a web page without your having requested it should go straight into the Trash. A website that claims you have a “virus,” or that anything else is wrong with your computer, is rogue.
    In OS X 10.7.5 or later, downloaded applications and Installer packages that have not been digitally signed by a developer registered with Apple are blocked from loading by default. The block can be overridden, but think carefully before you do so.
    Because of recurring security issues in Java, it’s best to disable it in your web browsers, if it’s installed. Few websites have Java content nowadays, so you won’t be missing much. This action is mandatory if you’re running any version of OS X older than 10.6.8 with the latest Java update. Note: Java has nothing to do with JavaScript, despite the similar names. Don't install Java unless you're sure you need it. Most people don't.
    5. Don't fill up your boot volume. A common mistake is adding more and more large files to your home folder until you start to get warnings that you're out of space, which may be followed in short order by a boot failure. This is more prone to happen on the newer Macs that come with an internal SSD instead of the traditional hard drive. The drive can be very nearly full before you become aware of the problem. While it's not true that you should or must keep any particular percentage of space free, you should monitor your storage consumption and make sure you're not in immediate danger of using it up. According to Apple documentation, you need at least 9 GB of free space on the startup volume for normal operation.
    If storage space is running low, use a tool such as the free application OmniDiskSweeper to explore your volume and find out what's taking up the most space. Move rarely-used large files to secondary storage.
    6. Relax, don’t do it. Besides the above, no routine maintenance is necessary or beneficial for the vast majority of users; specifically not “cleaning caches,” “zapping the PRAM,” "resetting the SMC," “rebuilding the directory,” "defragmenting the drive," “running periodic scripts,” “dumping logs,” "deleting temp files," “scanning for viruses,” "purging memory," "checking for bad blocks," "testing the hardware," or “repairing permissions.” Such measures are either completely pointless or are useful only for solving problems, not for prevention.
    The very height of futility is running an expensive third-party application called “Disk Warrior” when nothing is wrong, or even when something is wrong and you have backups, which you must have. Disk Warrior is a data-salvage tool, not a maintenance tool, and you will never need it if your backups are adequate. Don’t waste money on it or anything like it.

  • Create Run As Accounts - Error 635 unable to securely store the password information

    Hello,
    I'm running on SCVMM 2012 R2.
    When I try to create a new Run As Accounts the jobs fail with the error
    Virtual Machine Manager is unable to securely store the password informaiton on this machine.
    Ensure that the Microsoft Cryptographic Service has been installed on the VMM management server and try the operation again.
    ID: 635.
    I have make no modification and the server run since month without problem. I have more than 30 run as account existing.
    Now I have installed all the latest patch but without any success.
    All I can find is to uninstall VMM and install it back, but this is only a last resort solution for me.
    Where can I find more logs information on this issue?
    Regards
    MCITP: Enterprise Messaging Administrator 2010 MCTS: Lync Server 2010, Configuring MCSE

    I'm trying now to re-install the server but with no luck so far as the installer throw me an erro 1603 at the SSL cert creation step..
    MCITP: Enterprise Messaging Administrator 2010 MCTS: Lync Server 2010, Configuring MCSE

Maybe you are looking for

  • Are they ever gonna make a version of Itunes for windows mobile devices

    I bought the Moto Q, great phone/pda/mp3 player. Does all I need to do in just one piece of electronics that fits conveniently on my hip. No,I do not work for Motorola, but I like this phone. My issue is, I have purchases from the Itunes store that I

  • Tracking of Inventory in Marble Industry

    Dear Colleagues, We have a division that produces Marbles Slabs & tiles mostly using MTS scenario. There are special MTO Orders as well. The production process is to get a marble block from the mine (quarry) and to use it for producing slabs / tiles.

  • Problem with SMTP from one computer but not another

    I have an iMac connected directly to my network via Ethernet and a MacBook Pro which connects via wireless. I have a program installed on my iMac that sends me alerts via e-mail, and it works just fine. When I try and use Mail, however, on my MBP wit

  • Company Name

    Hi Experts, I am facing an issue in the system with the company name. I had registered a company A B C in the system, however on request of the client i had to change it to ABC. The changes have taken place and the name appears as ABC in the company

  • Wrong vender keyed for 3rd party payable

    We have a situation where a keying error occured. The wrong vendor was keyed for the 3rd party payable account. An ordering address vendor was keyed instead of the alternate payee vendor account number. Payroll has been exited and cannot proceed any