13. May 2017 · Write a comment · Categories: Uncategorized

I have my video games located on my "E" drive and when I play a game the png files show up in the Photos app on the "C" drive. this happens every time I play a game. How can I stop these files from being written to the Photos app? 

thanks

13. May 2017 · Write a comment · Categories: Uncategorized

김포 출장만남    카톡   WLD7  《  WLD 6 6 6  COM  》 〃 【   일본인출장업소  】   출장마사지  \    출장샵추천  \  출장샵 

김포 출장만남    카톡   WLD7  《  WLD 6 6 6  COM  》 〃 【   일본인출장업소  】   출장마사지  \    출장샵추천  \  출장샵 

김포 출장만남    카톡   WLD7  《  WLD 6 6 6  COM  》 〃 【   일본인출장업소  】   출장마사지  \    출장샵추천  \  출장샵 

김포 출장만남    카톡   WLD7  《  WLD 6 6 6  COM  》 〃 【   일본인출장업소  】   출장마사지  \    출장샵추천  \  출장샵 

김포 출장만남    카톡   WLD7  《  WLD 6 6 6  COM  》 〃 【   일본인출장업소  】   출장마사지  \    출장샵추천  \  출장샵 

김포 출장만남    카톡   WLD7  《  WLD 6 6 6  COM  》 〃 【   일본인출장업소  】   출장마사지  \    출장샵추천  \  출장샵 

김포 출장만남    카톡   WLD7  《  WLD 6 6 6  COM  》 〃 【   일본인출장업소  】   출장마사지  \    출장샵추천  \  출장샵 

김포 출장만남    카톡   WLD7  《  WLD 6 6 6  COM  》 〃 【   일본인출장업소  】   출장마사지  \    출장샵추천  \  출장샵 

김포 출장만남    카톡   WLD7  《  WLD 6 6 6  COM  》 〃 【   일본인출장업소  】   출장마사지  \    출장샵추천  \  출장샵 

김포 출장만남    카톡   WLD7  《  WLD 6 6 6  COM  》 〃 【   일본인출장업소  】   출장마사지  \    출장샵추천  \  출장샵 

김포 출장만남    카톡   WLD7  《  WLD 6 6 6  COM  》 〃 【   일본인출장업소  】   출장마사지  \    출장샵추천  \  출장샵 

김포 출장만남    카톡   WLD7  《  WLD 6 6 6  COM  》 〃 【   일본인출장업소  】   출장마사지  \    출장샵추천  \  출장샵 

김포 출장만남    카톡   WLD7  《  WLD 6 6 6  COM  》 〃 【   일본인출장업소  】   출장마사지  \    출장샵추천  \  출장샵 

김포 출장만남    카톡   WLD7  《  WLD 6 6 6  COM  》 〃 【   일본인출장업소  】   출장마사지  \    출장샵추천  \  출장샵 

13. May 2017 · Write a comment · Categories: Uncategorized
COMPUTER CHALLENGED SENIOR HERE!  I bought my All-in-One PC in 2016 with Windows 10; never did anything other than select a Chrome browser and started using.  At first I was getting Window Updates but somewhere along the way, started having problems.  Now I don't get Updates, having issues with 'alleged' viruses, security issues, etc.  My daughter says I should do reset to mfg settings and start over.  Tried to do recovery to a PREVIOUS date but didn't work.  NOW I am having issues with logging on, FB, downloading, etc.  I have a security package [Norton], I had a Driver package which I paid for the first year, but everyone tells me if I have Windows 10, and it's installed correctly, I don't need to buy all these extras.  I want to START OVER - make sure my pc is running Windows 10 and protected....I am willing to go back to manufacturer's settings as I have saved all my pics and documents to disks.  PLEASE - I NEED HELP!   
13. May 2017 · Write a comment · Categories: Uncategorized

Dear (V)C++ programmers,

I am required to make a registry node, on windows 10, 64 bit.

I am using VC++ 10(VS 2010).

My analysis work told, that windows has 2 registry keys(32 / 64 bit).

I digged with msdn samples to do so.

I made my solution compatible to 64 bit, after downloading a SDK from microsoft site.

Sample compiled as x64.

But while I try to create a registry on 64 bit(under 'WOW6432' node), RegCreateKeyEx(..)always fails.

Though I tried to do so, after solving acl code too....then too this api fails...

Here is snippet. Any help will be highly appreciated..

-Pankaj

.......................(MSDN Sample)

#include "stdafx.h"

#include <windows.h>

#include <stdio.h>

#pragma comment(lib, "advapi32.lib")

// Define application constants.

#if defined(_WIN64)

#define VIEW_DATA L"Hello! 64-bit World"

#define ALT_VIEW_DATA L"Hello! 32-bit World"

#define CROSS_ACCESS KEY_WOW64_32KEY

#else

#define VIEW_DATA L"Hello! 32-bit World"

#define ALT_VIEW_DATA L"Hello! 64-bit World"

#define CROSS_ACCESS KEY_WOW64_64KEY

#endif

// Create a registry key and set its value.

// Return TRUE if the function succeeds, FALSE if it fails.

BOOL

   CreateRegistryKeyValue(

       HKEY hKeyParent,

       PWCHAR KeyName,

       REGSAM rsAccessMask,

       REGSAM rsSamViewFlag,

       PBYTE pValue,

       DWORD dwValueSize

       )

{

   DWORD dwDisposition;

   HKEY hKey;

   DWORD dwRet;

   dwRet =

       RegCreateKeyEx(

           hKeyParent,

           KeyName,

           0,

           NULL,

           REG_OPTION_NON_VOLATILE,

   rsAccessMask | rsSamViewFlag |FORMAT_MESSAGE_FROM_SYSTEM,

           NULL,

           &hKey,

           &dwDisposition);

   if (dwRet != ERROR_SUCCESS)

   {

       printf("Error opening or creating key.\n");

 

       return FALSE;

   }

   // Attempt to set the value of the key.

   // If the call fails, close the key and return.

   if (ERROR_SUCCESS !=

           RegSetValueEx(

               hKey,

               NULL,

               0,

               REG_SZ,

               pValue,

               dwValueSize))

   {

       printf("Could not set registry value.\n");

       RegCloseKey(hKey);

       return FALSE;

   }

   RegCloseKey(hKey);

   return TRUE;

}

// Access a registry key and print its value.

// Return TRUE if the function succeeds, FALSE if it fails.

BOOL

   AccessRegistryKeyValue(

       HKEY hKeyParent,

       PWCHAR KeyName,

       REGSAM rsAccessMask,

       REGSAM rsSamViewFlag

       )

{

   HKEY hKey;

   WCHAR Buffer[MAX_PATH];

   DWORD dwSize = sizeof(Buffer);

   DWORD dwType;

   DWORD dwRet;

   dwRet =

       RegOpenKeyEx(

           hKeyParent,

           KeyName,

           0,

           rsAccessMask | rsSamViewFlag,

           &hKey);

   if (dwRet != ERROR_SUCCESS)

   {

       printf("Error opening key!\n");

       return FALSE;

   }

   if (ERROR_SUCCESS !=

           RegQueryValueEx(

               hKey,

               NULL,

               0,

               &dwType,

               (PBYTE)Buffer,

               &dwSize))

   {

       printf("Could not read registry value.\n");

       RegCloseKey(hKey);

       return FALSE;

   }

   if (rsSamViewFlag != 0)

   {

       printf("Alternate view:  %S\n", Buffer);

   }

   else

   {

       printf("Default view:    %S\n", Buffer);

   }

   RegCloseKey(hKey);

   return TRUE;

}

int

main()

{

   BOOL Res;

   // Define the list of keys to work with.

   typedef struct {

       HKEY hkRoot;

       LPWSTR szRootName;

       LPWSTR szName;

   }KEYDATA;

   KEYDATA Keys[] =

   {

       { HKEY_LOCAL_MACHINE, L"HKLM", L"Software\\Hello World" },

       { HKEY_CLASSES_ROOT, L"HKCR", L"Hello" },

       { HKEY_CLASSES_ROOT, L"HKCR", L"CLSID\\{00000000-0000-0000-0000-ABCD00000000}" },

       { HKEY_CLASSES_ROOT, L"HKCR", L"CLSID\\{00000000-0000-0000-0000-ABCD00000000}\\InprocServer32" },

       { HKEY_CLASSES_ROOT, L"HKCR", L"CLSID\\{00000000-0000-0000-0000-ABCD00000000}\\LocalServer32" }

   };

   // Now create the keys.

   for (int i = 0; i < _countof(Keys); i++)

   {

       // Create the keys in the alternate view of the registry.

       Res =

           CreateRegistryKeyValue(

               Keys[i].hkRoot,

               Keys[i].szName,

               KEY_READ | KEY_WRITE,

               CROSS_ACCESS,

               (PBYTE)ALT_VIEW_DATA,

               sizeof(ALT_VIEW_DATA));

       if (Res == FALSE)

       {

           printf("Could not create keys in alternate view of the registry.\n");

           return 1;

      }

       // Create the keys in the default view of the registry.

       Res =

           CreateRegistryKeyValue(

               Keys[i].hkRoot,

               Keys[i].szName,

               KEY_READ | KEY_WRITE,

               0,

               (PBYTE)VIEW_DATA,

               sizeof(VIEW_DATA));

       if (Res == FALSE)

       {

           printf("Could not create keys in default view of the registry.\n");

           return 1;

       }

   }

   // Access the registry and print key values.

   printf("Application string: %S\n", VIEW_DATA);

   for (int i = 0; i < _countof(Keys); i++)

   {

       printf("%S\\%S\n", Keys[i].szRootName, Keys[i].szName);

       Res =

           AccessRegistryKeyValue(

               Keys[i].hkRoot,

               Keys[i].szName,

               KEY_READ,

               0);

       if (Res == FALSE)

       {

           printf("Unable to access default view of registry.\n");

           return 1;

       }

       // Calls with CROSS_ACCESS explicitly access the alternate registry view.

       Res =

           AccessRegistryKeyValue(

               Keys[i].hkRoot,

               Keys[i].szName,

               KEY_READ,

               CROSS_ACCESS);

       if (Res == FALSE)

       {

           printf("Unable to access alternate view of registry.\n");

           return 1;

       }

   }

   return 0;

}

13. May 2017 · Write a comment · Categories: Uncategorized

Im running Windows 10.

a project file comprised of over 30 video files is now impossible to open. WLMP will open any other project file except for the one I need.

every time I try to open it I recieve that the file might be corrupted (see attached screen shot)

it took me nearly 6 hours to complete this project.

please advise

Saar 

13. May 2017 · Write a comment · Categories: Uncategorized

Does anybody know how to solve the problem circumscribed in Dutch as

It says:

Bericht niet bezorgd (Message not delivered)

Er is een probleem opgetreden bij het bezorgen van je bericht aan *** Email address is removed for privacy ***. Bekijk hieronder de technische gegevens.

(A problem occurred while delivering your message to *** Email address is removed for privacy ***. Look below at the technical data.)

De reactie van de externe server was: (The reaction of the technical server was:)

550 5.7.0 (BAY004-MC6F23) Unfortunately, messages from (209.85.217.171) on behalf of (pages.facebookmail.com) could not be delivered due to domain owner policy restrictions.


13. May 2017 · Write a comment · Categories: Uncategorized
How can I stop multiple directory folders from staying open when I navigate to a sub-folder?
12. May 2017 · Write a comment · Categories: Uncategorized

When I open Windows Live Mail, there is no way I can pick on up...but I had a 35 year youngster who told me all I had to do was delete the Calendar.  It has become so frustrating and I can't stop it!

Vince

\

***Post moved by the moderator to the appropriate forum category.***

12. May 2017 · Write a comment · Categories: Uncategorized

시흥출장샵추천 상담톡HIS22일본인 출장업소www.his34.com

♡출장샵출장안마일본인 애인대행출장샵후기만남업소 콜걸샵

시흥출장샵추천 상담톡HIS22일본인 출장업소www.his34.com

♡출장샵출장안마일본인 애인대행출장샵후기만남업소 콜걸샵

시흥출장샵추천 상담톡HIS22일본인 출장업소www.his34.com

♡출장샵출장안마일본인 애인대행출장샵후기만남업소 콜걸샵

시흥출장샵추천 상담톡HIS22일본인 출장업소www.his34.com

♡출장샵출장안마일본인 애인대행출장샵후기만남업소 콜걸샵

시흥출장샵추천 상담톡HIS22일본인 출장업소www.his34.com

♡출장샵출장안마일본인 애인대행출장샵후기만남업소 콜걸샵

시흥출장샵추천 상담톡HIS22일본인 출장업소www.his34.com

♡출장샵출장안마일본인 애인대행출장샵후기만남업소 콜걸샵

시흥출장샵추천 상담톡HIS22일본인 출장업소www.his34.com

♡출장샵출장안마일본인 애인대행출장샵후기만남업소 콜걸샵

시흥출장샵추천 상담톡HIS22일본인 출장업소www.his34.com

♡출장샵출장안마일본인 애인대행출장샵후기만남업소 콜걸샵

시흥출장샵추천 상담톡HIS22일본인 출장업소www.his34.com

♡출장샵출장안마일본인 애인대행출장샵후기만남업소 콜걸샵

12. May 2017 · Write a comment · Categories: Uncategorized

송파출장업소상담톡HIS88일본인 애인대행www.his34.com

♡출장샵출장샵추천일본인 출장마사지출장샵후기만남업소 콜걸샵

송파출장업소상담톡HIS88일본인 애인대행www.his34.com

♡출장샵출장샵추천일본인 출장마사지출장샵후기만남업소 콜걸샵

송파출장업소상담톡HIS88일본인 애인대행www.his34.com

♡출장샵출장샵추천일본인 출장마사지출장샵후기만남업소 콜걸샵

송파출장업소상담톡HIS88일본인 애인대행www.his34.com

♡출장샵출장샵추천일본인 출장마사지출장샵후기만남업소 콜걸샵

송파출장업소상담톡HIS88일본인 애인대행www.his34.com

♡출장샵출장샵추천일본인 출장마사지출장샵후기만남업소 콜걸샵

송파출장업소상담톡HIS88일본인 애인대행www.his34.com

♡출장샵출장샵추천일본인 출장마사지출장샵후기만남업소 콜걸샵

송파출장업소상담톡HIS88일본인 애인대행www.his34.com

♡출장샵출장샵추천일본인 출장마사지출장샵후기만남업소 콜걸샵

송파출장업소상담톡HIS88일본인 애인대행www.his34.com

♡출장샵출장샵추천일본인 출장마사지출장샵후기만남업소 콜걸샵

송파출장업소상담톡HIS88일본인 애인대행www.his34.com

♡출장샵출장샵추천일본인 출장마사지출장샵후기만남업소 콜걸샵

송파출장업소상담톡HIS88일본인 애인대행www.his34.com

♡출장샵출장샵추천일본인 출장마사지출장샵후기만남업소 콜걸샵

송파출장업소상담톡HIS88일본인 애인대행www.his34.com

♡출장샵출장샵추천일본인 출장마사지출장샵후기만남업소 콜걸샵