HP SimpleSave SD500a cannot access files

I cannot access any of the files/folders that I had backed up HP SimpleSave SD500a USB disk. I backed up by files before using XP, Vista and Windows 8.1 and have important information on it.
I had to restore my Dell 1545 laptop OS to factory defaults due to problems with Windows Vista Home Premium Edition and took a backup of all my files onto the SD500a where I store all my other backup data and verified that the backed up copy was fine.
After restoring Vista and installing updates, which included Vista SP2 I went to restore my backed up files. I connected my USB drive to the laptop and I noticed that Vista automatically installed the driver and 2 new drives appeared: CD Drive G: HP Launcher and Local Disk H:.
I then ran a virus scan using ESET Smart Security software that I had newly installed on the Vista laptop and found that the scan finished in no time. I changed the parameters to “in-depth” and this too finished quickly. Now I started to suspect that something had gone awry.
I could not access both of them in Explorer. I checked the drive properties and I got a message: H:\ is not accessible Data error (cyclical redundancy check). Drive G: is HP Launcher. I noticed that a “blue” light on the USB drive keeps flickering on most of the time when I open Explorer. At one point I did get a message if I wanted to format the disk which I declined.
I checked the status of both drives (G and H) in Disk Manager. Disk G: file system CDFS, capacity 1Mb, free 0Mb, status healthy and H: file system RAW, capacity 465.11Gb, free 465.11Gb, status healthy.
I tried connecting the SD500a to a desktop with Windows 8.1 and got the same result. I am not sure if the file formats changed after I connected it to my Vista laptop following the restore of the OS (NTFS vs CDSF/RAW) but I don't know what they were originally.
I am hoping that someone will be able to help to resolve this issue so that I can access my files.

If in fact you have to create a new volume and start all over, there are several data recovery programs that are free that should work just fine. Like I said, it wont get every file back, but it should get most of them.
http://www.easeus.com/
http://www.piriform.com/recuva
Personal commentary:
I do not trust ANY automatic backup service that runs in the background. I also don't want my backups compiled into a proprietary format that I have to use that specific program to access that backup with. Also for reasons you just experienced.
Although there a many different opinions about backing up files, One method that is minorley cumbersome but tried and true is Mark Russinovich's Sync Toy 2.1.  It is not automatic, I have to initiate it manually each time. But it will find and add/replace updated files when told to do so in Synchronise, Echo or Contribute modes. I can set up several categories to backup separately.  I just feel more confident its done when I manually do it myself and the files are accessible as if I drag and dropped directly.
Just my humble opinion.
Hope it helps. Good luck.

Similar Messages

  • Cannot access file from JApplet

    I have used the swingall.jar file with my JApplet for any
    version of IE. It gives one error
    i.e
    Cannot access file c:\prog\project
    I want to create a directory within c:\prog and also i want
    to write some files there. Pls help me.

    try this my friend!
    1.     Compile the applet
    2.     Create a JAR file
    3.     Generate Keys
    4.     Sign the JAR file
    5.     Export the Public Key Certificate
    6.     Import the Certificate as a Trusted Certificate
    7.     Create the policy file
    8.     Run the applet
    Susan
    Susan bundles the applet executable in a JAR file, signs the JAR file, and exports the public key certificate.
    1.     Compile the Applet
    In her working directory, Susan uses the javac command to compile the SignedAppletDemo.java class. The output from the javac command is the SignedAppletDemo.class.
    javac SignedAppletDemo.java
    2.     Make a JAR File
    Susan then makes the compiled SignedAppletDemo.class file into a JAR file. The -cvf option to the jar command creates a new archive (c), using verbose mode (v), and specifies the archive file name (f). The archive file name is SignedApplet.jar.
    jar cvf SignedApplet.jar SignedAppletDemo.class
    3.     Generate Keys
    Susan creates a keystore database named susanstore that has an entry for a newly generated public and private key pair with the public key in a certificate. A JAR file is signed with the private key of the creator of the JAR file and the signature is verified by the recipient of the JAR file with the public key in the pair. The certificate is a statement from the owner of the private key that the public key in the pair has a particular value so the person using the public key can be assured the public key is authentic. Public and private keys must already exist in the keystore database before jarsigner can be used to sign or verify the signature on a JAR file.
    In her working directory, Susan creates a keystore database and generates the keys:
    keytool -genkey -alias signFiles -keystore susanstore -keypass kpi135 -dname "cn=jones" -storepass ab987c
    This keytool -genkey command invocation generates a key pair that is identified by the alias signFiles. Subsequent keytool command invocations use this alias and the key password (-keypass kpi135) to access the private key in the generated pair.
    The generated key pair is stored in a keystore database called susanstore (-keystore susanstore) in the current directory, and accessed with the susanstore password (-storepass ab987c).
    The -dname "cn=jones" option specifies an X.500 Distinguished Name with a commonName (cn) value. X.500 Distinguished Names identify entities for X.509 certificates.
    You can view all keytool options and parameters by typing:
    keytool -help
    4.     Sign the JAR File
    JAR Signer is a command line tool for signing and verifying the signature on JAR files. In her working directory, Susan uses jarsigner to make a signed copy of the SignedApplet.jar file.
    jarsigner -keystore susanstore -storepass ab987c -keypass kpi135 -signedjar SSignedApplet.jar SignedApplet.jar signFiles
    The -storepass ab987c and -keystore susanstore options specify the keystore database and password where the private key for signing the JAR file is stored. The -keypass kpi135 option is the password to the private key, SSignedApplet.jar is the name of the signed JAR file, and signFiles is the alias to the private key. jarsigner extracts the certificate from the keystore whose entry is signFiles and attaches it to the generated signature of the signed JAR file.
    5.     Export the Public Key Certificate
    The public key certificate is sent with the JAR file to the whoever is going to use the applet. That person uses the certificate to authenticate the signature on the JAR file. To send a certificate, you have to first export it.
    The -storepass ab987c and -keystore susanstore options specify the keystore database and password where the private key for signing the JAR file is stored. The -keypass kpi135 option is the password to the private key, SSignedApplet.jar is the name of the signed JAR file, and signFiles is the alias to the private key. jarsigner extracts the certificate from the keystore whose entry is signFiles and attaches it to the generated signature of the signed JAR file.
    5: Export the Public Key Certificate
    The public key certificate is sent with the JAR file to the whoever is going to use the applet. That person uses the certificate to authenticate the signature on the JAR file. To send a certificate, you have to first export it.
    In her working directory, Susan uses keytool to copy the certificate from susanstore to a file named SusanJones.cer as follows:
    keytool -export -keystore susanstore -storepass ab987c -alias signFiles -file SusanJones.cer
    Ray
    Ray receives the JAR file from Susan, imports the certificate, creates a policy file granting the applet access, and runs the applet.
    6.     Import Certificate as a Trusted Certificate
    Ray has received SSignedApplet.jar and SusanJones.cer from Susan. He puts them in his home directory. Ray must now create a keystore database (raystore) and import the certificate into it. Ray uses keytool in his home directory /home/ray to import the certificate:
    keytool -import -alias susan -file SusanJones.cer -keystore raystore -storepass abcdefgh
    7.     Create the Policy File
    The policy file grants the SSignedApplet.jar file signed by the alias susan permission to create newfile (and no other file) in the user's home directory.
    Ray creates the policy file in his home directory using either policytool or an ASCII editor.
    keystore "/home/ray/raystore";
    // A sample policy file that lets a JavaTM program
    // create newfile in user's home directory
    // Satya N Dodda
    grant SignedBy "susan"
         permission java.security.AllPermission;
    8.     Run the Applet in Applet Viewer
    Applet Viewer connects to the HTML documents and resources specified in the call to appletviewer, and displays the applet in its own window. To run the example, Ray copies the signed JAR file and HTML file to /home/aURL/public_html and invokes Applet viewer from his home directory as follows:
    Html code :
    </body>
    </html>
    <OBJECT classid="clsid:8AD9C840-044E-11D1-B3E9-00805F499D93"
    width="600" height="400" align="middle"
    codebase="http://java.sun.com/products/plugin/1.3/jinstall-13-win32.cab#Version=1,3,1,2">
    <PARAM NAME="code" VALUE="SignedAppletDemo.class">
    <PARAM NAME="archive" VALUE="SSignedApplet.jar">
    <PARAM NAME="type" VALUE="application/x-java-applet;version=1.3">
    </OBJECT>
    </body>
    </html>
    appletviewer -J-Djava.security.policy=Write.jp
    http://aURL.com/SignedApplet.html
    Note: Type everything on one line and put a space after Write.jp
    The -J-Djava.security.policy=Write.jp option tells Applet Viewer to run the applet referenced in the SignedApplet.html file with the Write.jp policy file.
    Note: The Policy file can be stored on a server and specified in the appletviewer invocation as a URL.
    9.     Run the Applet in Browser
    Download JRE 1.3 from Javasoft
    save this to write.jp
    keystore "/home/ray/raystore";
    // A sample policy file that lets a JavaTM program
    // create newfile in user's home directory
    // Satya N Dodda
    grant {
    permission java.security.AllPermission;
    save this to signedAppletDemo.java
    * File: @(#)SignedAppletDemo.java     1.1
    * Comment:     Signed Applet Demo
    * @(#)author: Satya Dodda
    * @(#)version: 1.1
    * @(#)date: 98/10/01
    import java.applet.Applet;
    import java.awt.Graphics;
    import java.io.*;
    import java.awt.Color;
    * A simple Signed Applet Demo
    public class SignedAppletDemo extends Applet {
    public String test() {
    setBackground(Color.white);
         System.out.println(System.getProperty("user.home"));
         String fileName = System.getProperty("user.home") +
                        System.getProperty("file.separator") +
                        "newfile";
         String msg = "This message was written by a signed applet!!!\n";
         String s ;
         try {
         FileWriter fos = new FileWriter(fileName);
         fos.write(msg, 0, msg.length());
         fos.close();
         s = new String("Successfully created file :" + fileName);
         } catch (Exception e) {
         System.out.println("Exception e = " + e);
         e.printStackTrace();
         s = new String("Unable to create file : " + fileName);
         return s;
    public void paint(Graphics g) {
    g.setColor(Color.blue);
    g.drawString("Signed Applet Demo", 120, 50);
    g.setColor(Color.magenta);
    g.drawString(test(), 50, 100);

  • ACS 4.2.(1) build15 - replication failed with Cannot access file

    Just upgraded from 4.0 - to 4.2 then to 4.2.1 15. As you may have seen with periovous posts of mine its not been an esay ride.
    I have now managed to get it all working - backups AAA etc but for some reason i cannot get the replication to work! Its states the following...
    Within the Database Replication active log - Error OutBound database replication failed - refer to CSAuth log file.
    Other lines in the log state  its ok eg - Component logging reports was updated - being replicated to slave...
    Looking at the CSAuth log file...
    .....DBReplication thread kicked..starting sync.
    ODBC Operation failed with the folowing information: Message = [Sybase] [ODBC Driver] [Adaptive Server Anywhere] Cannot access file "D:$etworks\CiscoSecure 4.2\CSAuth\DbSyncSratch\users\users.dat~ -- Invailed argument, sqlStates=S1000, Native error = -602$
    SL:saveUserTable - execution Failed.
    Please note that the $ is a symbol that i have used because the symbol in the log is strange and i  cannot seem to be able replicate here with this text, for example $etworks - should be networks...
    Everything else seems to be working except this - any help would be great..
    Oh Merry Xmas and Happy new year to you all!
    John

    Did you find a solution?
    I have the same problem with the exact same symptoms - I can't get replication to work. The path name in the error message is missing the first letter, too.
    PS: It has nothing to do with the firewall, the replication fails even before it tries to connect to the network.
    Greetings
    Mathias Rufer

  • HT1918 I cannot access files I uploaded from an old computer.  The email account to which some tracks are connected is deleted. For some reason my birth date doesn't work either. Is there some way to transfer the files to my current address?

    I cannot access files I uploaded from an old computer. The email account to which some tracks are connected is deleted. For some reason my birth date doesn't work either. Is there some way to transfer the files to my current address and username?

    Most likely you have Office 2004 which are PPC-only applications and will not work in Lion. Upgrade to Office 2011. Other alternatives are:
    Apple's iWork suite (Pages, Numbers, and Keynote.)
    Open Office (Office 2007-like suite compatible with OS X.)
    NeoOffice (similar to Open Office.)
    LibreOffice (a new direction for the Open Office suite.)

  • Cannot access files on Android phone

    Hello! I just setup a WD My Cloud 3TB and copied some pictures to a private share.  When using WD My Cloud app on my android phone, these pictures are getting listed; however, when I try to launch/open any picture, I get the message "cannot access file." Also, on WD Photos app, I get the message "No photos found." On my Windows 8 PC, using WD My Cloud, I can see and open pictures. No problem here. The problem seems to be only through remotely. I'm puzzled why I'm presented the list of pictures but when I try to open I'm not allowed to. Thanks for your attention!Ravi.

    denisdyer wrote:
    Hi,I hope you can help, I'm having exactly the sam eissue. I bought the my cloud yesterday have uploaded about 1TB of photos and video and i can access everything no problem except the photos. When I try and open any of the photos form my samsung galaxy S5 I get the spinning circle and then it says the photo cannot be accessed, do I just have to wait? Any assitance would be appreciatedWhich Android app are you using that generates the error? The WD Photos or the WD My Cloud app? May want to unsintall the app and reinstall it. Sometimes that can fix strange app behavior.

  • Cannot access files on Time Capsule

    Cannot acess files on the TC HDD anymore. The TC HDD appears on the left panel in Finder, but if I doubleclick the disk, the TC drops connection and restarts. Soft, hard and factory resets of the TC did not help.
    Last months the TC has always dropped connection or acess to the HDD but a soft reset helped every time.
    File sharing in Airport Utility is on.
    The TC router works good and I have acess to the Internet as long as it restarts.
    Is there any chance to restore my data from the TC? All the media files have been stored there.
    Using Lion, TC 7.5.2.
    Thanks in advance for your hints

    I don't have a guaranteed solution to your problem, just some suggestions:
    1) Try powering down the Time Capsule for at least 15 minutes, then plug it in again and see if it works better.
    2) If you suspect that heat might be a problem, try raising the Time Capsule to give better air flow below it.  I have mine on an inverted plastic-coated-wire basket of the type used to organize kitchen drawers.
    3) If AirPort Utility can "see" the Time Capsule, you should be able to use the "archive" function (in the Disks panel, Disks tab) to write the disk's contents to a drive connected to the Time Capsule's USB port.
    4) In the worst case, you should be able to access the files on the Time Capsule's disk by opening up the Time Capsule, removing the disk drive, mounting the drive in an external enclosure, and attaching the enclosure to your Mac.

  • I cannot access files saved prior to Lion download.  Help?

    How can I access files from operating system prior to Lion?

    Do you mean from prior backups?   If so, what kind (Time Machine, "clone," or what)?

  • New user cannot access files

    I installed a TestSTand deployment as User1. Then I tried to run a test as Operator. When it tried to write a summary report it could not access the file. So's I tries it myself and I can't delete files in the test report directory created by the deployment. I see that the whole directory tree is read-only. I switched to User1 and unchecked read-only up and down the line but no good. Finally I gave Operator admin privs and rebooted and then he could access files. Why is my deployment setup this way? Is it something I did or didn't do?
    jvh

    Hi jvh,
    I'm a little confused about what you are trying to do with your deployment.  Did it not automatically generate a report after the tests had completed?  Were you trying to open up the Test Sequence Report but were being denied permission to do so?  Could you not remove the .xml report file from its directory?  Maybe it would be good if you could attach a screen shot of your directory tree, or screen shots of what you've been seeing.
    Just curious -- what permissions did you have configured for the Operator user? 
    Regards,
    Stephanie R.
    National Instruments
    Stephanie R.
    National Instruments

  • ITunes cannot access files from home network

    Just got new Vista PC. All my music files are on older XP PC. I have set up my home network, and Vista PC can see/access all my XP folders. I have Sonos and Yahoo Jukebox installed on Vista PC and both programs can access the XP music files and play them.
    On iTunes however, I cannot create my Music folder with the XP music. When I select 'Add Folder to Library' and get the 'Browse for Folder' popup, I see the 'Network' icon, but when I select it, nothing happens. I can right-click 'Explore' from there to re-launch/see the full network, but iTunes cannot seem to see/access this.
    Same problem if I go through iTunes' Preferences/Advanced/General to set the iTunes folder location. I can hit browse and see 'Network' in list, but selecting it produces nothing.
    Very surprised that I have no problem through Sonos or Yahoo Jukebox but Apple brakes down.
    Any thoughts?

    After the update I cannot connect to my router anymore
    (see other threat)

  • Cannot access files marked "npl"

    Some time ago I downloaded some audio recordings from my 6230 to my pc (voice recordings taken on the phone). These used to play ok with a nokia (media) player I think was part of pc suite. I have not tried to access these recordings for some time but a recent attempt to do this resulted in an error msg saying that the file type was not recognised. These appear to be "npl" files and I cannot find a way of accessing these recordings through pc suite or other media players. I no longer seem to have the nokia player I was using in the past. My current version of pc suite is the latest one. These recordings are personal and important to me and I would hate to think they are lost. Can anyone suggest how I can play these files?

    I don't have a guaranteed solution to your problem, just some suggestions:
    1) Try powering down the Time Capsule for at least 15 minutes, then plug it in again and see if it works better.
    2) If you suspect that heat might be a problem, try raising the Time Capsule to give better air flow below it.  I have mine on an inverted plastic-coated-wire basket of the type used to organize kitchen drawers.
    3) If AirPort Utility can "see" the Time Capsule, you should be able to use the "archive" function (in the Disks panel, Disks tab) to write the disk's contents to a drive connected to the Time Capsule's USB port.
    4) In the worst case, you should be able to access the files on the Time Capsule's disk by opening up the Time Capsule, removing the disk drive, mounting the drive in an external enclosure, and attaching the enclosure to your Mac.

  • Cannot install iTunes on win xp. Cannot access file on network and I do not have a network. Looking for a file iTunes.msi. Anybody help me

    iTunes will not install on windows xp del pc install cannot acess mile iTunes.msi.   Help

    (1) Download the Windows Installer CleanUp utility installer file (msicuu2.exe) from the following Major Geeks page (use one of the links under the "DOWNLOAD LOCATIONS" thingy on the Major Geeks page):
    http://majorgeeks.com/download.php?det=4459
    (2) Doubleclick the msicuu2.exe file and follow the prompts to install the Windows Installer CleanUp utility. (If you're on a Windows Vista or Windows 7 system and you get aCode 800A0046 error message when doubleclicking the msicuu2.exe file, try instead right-clicking on the msicuu2.exe file and selecting "Run as administrator".)
    (3) In your Start menu click All Programs and then click Windows Install Clean Up. The Windows Installer CleanUp utility window appears, listing software that is currently installed on your computer.
    (4) In the list of programs that appears in CleanUp, select any iTunes entries and click "Remove", as per the following screenshot:
    (5) Quit out of CleanUp, restart the PC and try another iTunes install. Does it go through properly this time?

  • Cannot access files on Time Machine due to permissions

    I wiped my hard drive and reinstalled Mountain Lion. I am now trying to pull my files back off of Time Machine - music, pictures, documents. I keep getting errors stating I do not have permission to access certain files and the whole process shuts down. On my backup drive, I had a different username. Is that the problem? If so, how can I fix it without creating a new user with my old name and creating more problems?

    I suspect that the problem isn't so much a different user name but a different user ID.  You can see that for your current account in System Preferences > Users & Groups by right-clicking on a user and selecting "Advanced Options".  (Heed the warning about changing the values you see in that panel!)
    You can see the user ID for a file in Time Machine using a command in a Terminal session.  Open a session and type "ls -ln ", where the letters "l" are lower-case "L"s and there's a space after what you type.  (Don't type the quotes.)  Then use the Finder to navigate to a file on your Time Machine disk that you can't access, drag it to the Terminal window, and press <return>.  The user ID will be shown in the third field.  It will probably be a number like as 501.  If your account's user ID is 501 and that of the Time Machine files is 502, I'd create a new account on your Mac.  It will probably be given the user ID 502, which will match that of the Time Machine files.

  • Cannot Access Files on Time Machine

    Hi all I was hoping that I can get some help on Time Machine issue I have.  I am having trouble accessing my external hard drive backup (WD My Passport for Mac) on Time Machine. I want to restore iPhoto. Somehow I have excluded items on Time Machine that I now need to put on to my Mac.  When I hit the option key on Time Machine Preferences I can see the folder I want to restore but when I hit "-" nothing changes.
    I can also see the same disk as a backup disk but only the unused portion. I am using Yosemite. I hope someone can help!!

    Triple-click the line below on this page to select it:
    ~/Library/Preferences/com.apple.TimeMachine.plist
    Right-click or control-click the highlighted line and select
              Services ▹ Reveal in Finder (or just Reveal)
    from the contextual menu.* A Finder window should open with a file named "com.apple.TimeMachine.plist" selected. Move the file to the Trash.
    Repeat with this line:
    ~/Library/Preferences/ByHost
    A folder named "ByHost" should open. Inside that folder, there may be a file with a long name beginning "com.apple.TimeMachine." If the file exists, move it to the Trash.
    Restart the computer and test.
    *If you don't see the contextual menu item, copy the selected text to the Clipboard by pressing the key combination command-C. In the Finder, select
              Go ▹ Go to Folder...
    from the menu bar and paste into the box that opens by pressing command-V. You won't see what you pasted because a line break is included. Press return.

  • Cannot access files in time machine backups

    Greetings all.  Thanks for your help with this.
    I've recently replaced my internal HD in my 2009 MBP.  Of course, I ran a backup to my external 1TB.  Installed the new HD, reinstalled Mountain Lion, and figured...fresh start, let's just grab what I need from Time Machine and start "new." Well, when I get into Time Machine, it shows all of my backups, ever, which it should, but when I access the backup I want to draw from, I can't access the files I need.  Everything in the Finder window, except for my computer name and the applications folder, is greyed out.  THIS IS FRUSTRATING TO ME.
    I've tried this..associating the new backups with the old:
    http://pondini.org/TM/B6.html
    didn't work.
    I don't want to do a full backup from migration assistant.  I like the idea of a fresh start with just my media.  Any ideas? I"m so frustrated right now.
    Thanks

    I can't see backups for a disk/partition that's no longer connected

  • Cannot access files backed up in DVD.

    I just bought a nice external Iomega DVD burner. Works fine and I was able to back up tons of files. To check that these files were accessible, I tried to read the DVD on my PC. No problem, files are there, I can open them, perfect.
    Yesterday I tried to check them in my ibook before the major erase/install process I want to do, and I can see the folders and files, the first file I try to open, works fine, BUT when I try to launch another one, it just vanishes in the air!!!
    It seems for a second they will open, but then nothing happens, except they disappear from the Finder. This happens with every single file, .doc, .xls, .jpg, .tiff, .pdf, and so on. Folders remain untouched.
    After some files disappearing, I do a "Get Info" on the specific Folder and it cannot estimate its size. I tried to copy them to my ibook but I can't do it, even if I try to copy an entire folder, it only copies the folder, but there's nothing inside it.
    I tried also to read the DVD in my internal ibook drive but got the same result.
    If I get the DVD back to my PC, files are there and I can open them with no problems.
    What is wrong? Any ideas?

    I used the program that came with the DVD burner. It´s called Discribe by Charismac Engineering. The recording session was done under the "Build a Mac HFS" mode, so I suppose this program prepares automatically the DVD.
    In any case, I just used Roxio, erased the DVD and burned it again with Roxio. Flawless, I can now see everything as burned. Simple.
    I don´t know the explanation to the problem, I just know the crappy program they included with the DVD burner is good for nothing.
    Thanks anyway for your interest in my question. Thought nobody cared about it.

Maybe you are looking for

  • Flex Mobile Charts -- Less Than Symbol in Axis labels

    Hi,    I am creating a Mobile Project and want to display a column chart. My problem is I want to display "<" in  Axis label of charts.But somehow its not working.I have tried using "<" and is working fine in Web and Desktop project.But somehow it is

  • Import data from csv to SQL database

    How to  Import data from csv to SQL database through BLS-xMII?

  • U00A7VC in Purchasing, Purchase requisition of configurable material

    Hello Experts, We have the scenario as described below: Material A - Parent KMAT (Internally Manufactured) Material B - Child KMAT (Internally Manufactured, Has its own BOM &assigned to BOM of Parent KMAT with item category L) Material C - Child KMAT

  • Computer keeps crashing??

    This started a few days ago. The computer would freeze up, then slightly change the colors of the desktop or program opened. The screen has done a stobe effect for some of the times. After I shut the computer down then try and restart it, it looks li

  • Getting different result while running Dashboard SP Using Temporary table?

    Hi Experts I am getting different result when I run my dashboard procedure I am using temporary table with "ON COMMIT PRESERVE ROWS", below is the information I am running my attendance dashboard procedure which will display the employee attendance s