Mmc and task scheduler

I setup a policy to block the MMC tools I don't want users to have access to but somehow this also blocked task scheduler, my research indicates this is a known problem but I have yet to see a solution.
Any ideas how I can achieve my goal without affect Task scheduler?

Hi,
Before going further, thanks for providing the link.
It is true that there is no specific policy setting to permit Task Scheduler snap-in. As a result, we can choose to individually disable the snap-ins we want to , or we can refer to the method provided by Cicely Feng in the thread you mentioned to
import a custom adm file to do this.
To create a custom adm file, we can create a txt file, copy the template to this txt file, and then modify the txt file to .adm file.
Regarding how to add a custom adm file to a GPO, the following article can be referred to for more information.
Add or remove an Administrative Template (.adm file)
http://technet.microsoft.com/en-us/library/cc739134(v=ws.10).aspx
TechNet Subscriber Support
If you are TechNet Subscription user and have any feedback on our support quality, please send your feedback here.
Best regards,
Frank Shen

Similar Messages

  • Incremental and Full backups using WBADMIN and Task Scheduler in Server 2008 R2

    I'd like to create an automated rotating schedule of backups using wbadmin and task scheduler, which would backup Bare Metal Recovery; System State; Drive C: and D: to a Network Share in a pattern like this:
    Monday - Incremental, overwrite last Monday's
    Tuesday - Incremental, overwrite last Tuesday's
    Wednesday - Incremental, overwrite last Wednesday's
    Thursday - Incremental, overwrite last Thursday's
    Friday - Incremental overwrite last Friday's
    Saturday - Full, overwrite last Saturday's
    I need to use the wbadmin commands within the Task Scheduler and do not know any of the required Syntax to make sure everything goes smoothly, I do not want to do this through the CMD.

    I know each backup for the previous corresponding day will be replaced, how do you figure I wont be able to do incremental backups...
    Because incremental backup is based on Volume Shadow Copy (VSS) feature and due to Windows Server 2008 R2 limitations (this limitation is resolved in Windows 8) only one version of backed up data can be stored in a shared folder. So the
    result is that every time you back up some data on a shared folder, you actually creating a full backup of them.
    is it not supported through task scheduler?
    The Task Scheduler is only a feature that does the tasks that you have defined for it. Actually it runs the
    wbadmin command that runs on an operating system with the mentioned limitation.
    I know you can do Incremental backups through Windows Server Backup, but my limitation using that is I cant setup multiple backups.
    Yes, you are right. Windows Server Backup feature in Windows Server 2008/2008 R2 has not this functionality (although
    ntbackup in Windows XP and Windows Server 2003 had this functionality). So, the only workaround to this limitation is through using Task Scheduler feature with wbadmin command. For more information see the following article:
    http://blogs.technet.com/b/filecab/archive/2009/04/13/customizing-windows-server-backup-schedule.aspx
    So are you saying that even though I want each backup to go to a different place on the Shared Folder that it will replace the previous backup anyways?
    No and because of this I said in my previous post that with some modifications and additions you can do the scenario. For example, you back up to a shared folder with the name of Shared1 on Mondays. You also have been configured the backup feature to back
    up data on another shared folder, named Shared2, on Wednesday. When you repeat the backup operation in Shared1, only the backed up data that resides on it will be affected, and the data on Shared2 remains intact.
    Please feel free to let us know if you have any question or concern.
    Please VOTE as HELPFUL if the post helps you and remember to click “Mark as Answer” on the post that helps you, and to click “Unmark as Answer” if a marked post does not actually answer your question. This can be beneficial to other community members reading
    the thread.
    Hi R.Alikhani
    Then do you know if wbadmin supports incremental backup in Windows 8? As you said the VSS issue is fixed in Win8. However, the wbadmin has less options then in windows server. I tried a bit but it seems it only supports full backup? ps, I use a network share
    - will the incremental backup works if I define a ISCCI then? My remote backup PC is also running Win8.

  • Outlook Calender and Tasks Scheduling forecast Improvement

    Often times task assigned don't end in one hour or a few hours or few days.  It would be nice to have a feature whereby I can select "To be completed in" 10 "weeks" or "days" or "hours".  So I can custom
    enter my number, but also custom choose how long the task will be:  weeks or days or months.  Something of the likes of a "Scheduling wheel cart" given out by our Vendors for advertising.  This neat feature if incorporated will give
    the user an instantaneous outlook of the forcast for specific tasks and can plan other items or make important schedule planning decisions.

    Hi,
    The Task is an Outlook feature which data is saved in mailbox in Exchange server. Since the issue is related to the Outlook feature instead of Exchange server, please refer to Ed Crowley’s suggestion to ask a question in Outlook forum for more help:
    https://social.technet.microsoft.com/Forums/office/en-US/home?forum=outlook
    The reason why we recommend posting appropriately is you will get the most qualified pool of respondents, and other partners who read the forums regularly can either share their knowledge or learn from your interaction with us. Thank you for your understanding.
    Regards,
    Please remember to mark the replies as answers if they help, and unmark the answers if they provide no help. If you have feedback for TechNet Support, contact [email protected]
    Winnie Liang
    TechNet Community Support

  • Script doesn't work in task scheduler

    I know it has already posted many times but I have already tried everything and still I can't get it to work.
    The script is a simple send email function and it works if executed from the command prompt:
    powershell.exe -f .\sendEmail.ps1 [email protected] "Test Subject" "Test Message"
    But in the task scheduler it doesn't work and no email is sent. The exit code of the task is 0xFFFD0000:
    Task Scheduler successfully completed task "\SendEmailTest" , instance "{15ff2070-ee25-4b2e-9ae1-274eda0d8c3a}" , action "powershell.exe" with return code 4294770688.
    The task is configured to run under the SYSTEM account with highest privilege, powershell ist configured with unrestricted execution policy, why it doesn't work?
    I have tried also with a simpler task to create a text file
    New-Item c:\scripts\new_file.txt -type file -force -value "This is text added to the file"
    But it doesn't work too, so it should be some other missing privilege somewhere but I couldn't find anything in internet.
    Thanks for any help

    I found another possible issue while looking at a similar problem. I was unable to execute a PowerShell script as a Task Scheduler action, even though the script ran correctly when logged into Windows as the target user and running within PowerShell.
    Task Scheduler would consistently display the 0xFFFD0000 error when I nominated the script in the task's action arguments using what I believed to be normal PowerShell quoting rules:
    -ExecutionPolicy Bypass -File 'D:\full path\to\script.ps1'
    PowerShell acquiesced and Task Scheduler fired off the task immediately and without issue when I changed the quotes I used from single to double:
    -ExecutionPolicy Bypass -File "D:\full path\to\script.ps1"
    Dropping to a command prompt and executing the full command immediately revealed the problem:
    D:\>C:\Windows\System32\WindowsPowerShell\v1.0\powershell.exe -ExecutionPolicy Bypass -File 'D:\full path\to\script.ps1'Processing -File ''D:\full path\to' failed: The given path's format is not supported. Specify a valid path for the -File parameter.
    Notice the strange use of two single quotes before the path and one single quote after.
    The moral of the story: When feeding the full path of a script to PowerShell as a command line parameter,
    use double quotes!

  • Do I need IIS or Task Scheduler for a windows install of the SOA suite

    I am currently trying to set a R&D SOA environment up on a windows box. By default these services are disabled when we usually set up our application servers within dev. So do I need IIS and task scheduler to be running on the windows environment when I install the SOA suite?

    Hi,
    you do not need the IIS because SOA Suite is shipped with its own Apache.

  • Task Scheduler PS1 with convertto-html and send-mailmessage doesn't deliver HTML, works in E201SP2RU5 EMS

    When I run the script below from EMS it's delivered with the expect HTML table. but if I run it from a task in task scheduler the html is missing.
    I've tried launching it in Task scheduler a couple different  ways with the same results.  This is what I'm using now:
    C:\Windows\System32\WindowsPowerShell\v1.0\powershell.exe -command ". 'C:\Program Files\Microsoft\Exchange Server\V14\bin\RemoteExchange.ps1'; Connect-ExchangeServer -ServerFqdn exchange.domain.com; C:\scripts\TESTER.PS1"
    Any ideas?
    =========================
    $a = "<style>"
    $a = $a + "BODY{background-color:White;}"
    $a = $a + "TABLE{border-width: 1px;border-style: solid;border-color: black;border-collapse: collapse;}"
    $a = $a + "TH{border-width: 1px;padding: 5px;border-style: solid;border-color: black;background-color:LightSteelBlue}"
    $a = $a + "TD{border-width: 1px;padding: 5px;border-style: solid;border-color: black;background-color:Linen}"
    $a = $a + "</style>"
    $MBexportBatchRprt = Get-MailboxExportRequest -ResultSize unlimited -BatchName Test-Batch |
        sort name | Get-MailboxExportRequestStatistics |
        select Name,PercentComplete,status,StartTimestamp,CompletionTimestamp,OverallDuration, EstimatedTransferSize, EstimatedTransferItemCount, BadItemsEncountered |
        ConvertTo-Html -Head $a |
        Out-String
    $messageParameters = @{                       
        Subject = "Report 1"                       
        Body = "Contact [email protected] with problems. <br/><br/> $MBexportBatchRprt"
        From = "[email protected]"                       
        To = "[email protected]"                       
        SmtpServer = "exchange.domain.com"                       
    Send-MailMessage @messageParameters -BodyAsHtml 
    =========================

    When I run the script below from EMS it's delivered with the expect HTML table. but if I run it from a task in task scheduler the html is missing.
    I've tried launching it in Task scheduler a couple different  ways with the same results.  This is what I'm using now:
    C:\Windows\System32\WindowsPowerShell\v1.0\powershell.exe -command ". 'C:\Program Files\Microsoft\Exchange Server\V14\bin\RemoteExchange.ps1'; Connect-ExchangeServer -ServerFqdn exchange.domain.com; C:\scripts\TESTER.PS1"
    Any ideas?
    =========================
    $a = "<style>"
    $a = $a + "BODY{background-color:White;}"
    $a = $a + "TABLE{border-width: 1px;border-style: solid;border-color: black;border-collapse: collapse;}"
    $a = $a + "TH{border-width: 1px;padding: 5px;border-style: solid;border-color: black;background-color:LightSteelBlue}"
    $a = $a + "TD{border-width: 1px;padding: 5px;border-style: solid;border-color: black;background-color:Linen}"
    $a = $a + "</style>"
    $MBexportBatchRprt = Get-MailboxExportRequest -ResultSize unlimited -BatchName Test-Batch |
        sort name | Get-MailboxExportRequestStatistics |
        select Name,PercentComplete,status,StartTimestamp,CompletionTimestamp,OverallDuration, EstimatedTransferSize, EstimatedTransferItemCount, BadItemsEncountered |
        ConvertTo-Html -Head $a |
        Out-String
    $messageParameters = @{                       
        Subject = "Report 1"                       
        Body = "Contact [email protected] with problems. <br/><br/> $MBexportBatchRprt"
        From = "[email protected]"                       
        To = "[email protected]"                       
        SmtpServer = "exchange.domain.com"                       
    Send-MailMessage @messageParameters -BodyAsHtml 
    =========================

  • Require script or a method to Run .exe files on target computers using task scheduler or any other Windows server intigrated tool

    Hi All,
    We are outsourcing services to our clients. One of our clients whom we manage the whole Active directory / Exchange 2010 infrastructure have a requirement.
    We would like to run a .exe file from one server to another server / servers remotely to generate a report. The challenge is that we do not have permissions on some servers to access so we cannot login manually and run the .exe file to generate that report.
    (All are in the same domain restricted or non restricted)
    The domain Administrator (Client) Has restricted us to login to those servers due to security reasons. And is not providing us permissions or not giving the username and password to login to those servers.
    Requirement is :
    To run a .exe file with some parameters in it on the restricted servers Via powershell script or task scheduler (As the task will be created by the domain admin in the server in which we have access by entering the domain account).
    As we have to run this .exe file on around 60 servers (restricted) so an option should popup asking the name of the agent in which you want to RUN the .exe file or a source input via CSV will also be fine.
    Can anyone tell me or can this be possible ? Is there any one who has made such a script.
    Can anyone please help.
    Gautam.75801

    Hi Justin,
    Thank you for the suggestion.
    Below is the script what i Executed.
    "C:\Windows\system32\PsExec.exe" @C:\HPS\Serverrlist.txt cmd /C "server name\C$\hps\hps.EXE"
    Pause
    I tried using PSExec. But in the LAB domain as well as in the production i tried this on servers in which i have full access. When i execute this i get the output as Access is denied. Below is the screenshot of the Error.
    I have installed Psexec on both machines.
    I have full admin rights to the shared folder or network location which i have scratched in the screenshot. Not sure why i am getting this error.
    Also analysed the event logs and found a failure event once i execute this script.
    A handle to an object was requested.
    Subject:
    Security ID:
    Domain name\My username
    Account Name:
    Lg167978
    Account Domain:
    My Domain
    Logon ID:
    0x234992
    Object:
    Object Server:
    Security
    Object Type:
    File
    Object Name:
    C:\Windows\System32\eventvwr.msc
    Handle ID:
    0x0
    Process Information:
    Process ID:
    0x17e0
    Process Name:
    C:\Windows\System32\mmc.exe
    Access Request Information:
    Transaction ID:
    {00000000-0000-0000-0000-000000000000}
    Accesses:
    READ_CONTROL
    SYNCHRONIZE
    WriteData (or AddFile)
    AppendData (or AddSubdirectory or CreatePipeInstance)
    WriteEA
    ReadAttributes
    WriteAttributes
    Access Reasons:
    READ_CONTROL: Granted by
    D:(A;;0x1200a9;;;BA)
    SYNCHRONIZE:
    Granted by D:(A;;0x1200a9;;;BA)
    WriteData (or AddFile):
    Not granted
    AppendData (or AddSubdirectory or CreatePipeInstance):
    Not granted
    WriteEA:
    Not granted
    ReadAttributes:
    Granted by ACE on parent folder D:(A;;0x1301bf;;;BA)
    WriteAttributes:
    Not granted
    Access Mask:
    0x120196
    Privileges Used for Access Check:
    Restricted SID Count:
    0
    Can you help in solving this.
    Gautam.75801

  • Task scheduler service fails to run after windows update

    OS: W2008R2x64
    We noticed that our daily tasks are not running anymore since the last windows updates few days ago. When running the task scheduler mmc, we get the following:
    Looking further, the service did not seems to be running. If we try to start the service we get the follow message:
    "The Task Scheduler service on Local Computer started and then stopped. Some services stop automatically if they are not in use by other services or programs."
    Now we noticed that did problem started after following updates, though not all machines are infected!!:
    Cumulative Security Update for Internet Explorer 9 for Windows Server 2008 R2 x64 Edition (KB2925418)
    Security Update for Windows Server 2008 R2 x64 Edition (KB2930275)
    Windows Malicious Software Removal Tool x64 - March 2014 (KB890830)
    Update for Windows Server 2008 R2 x64 Edition (KB2929733)

    Hi,
    Here is a similar thread for your reference, please go through it and troubleshoot the issue:
    http://answers.microsoft.com/en-us/windows/forum/windows_7-performance/task-scheduler-wont-start/11394a52-d7de-496b-880b-733123579b9b
    Regards,
    Yan Li
    Regards, Yan Li

  • Task scheduler missing from Restricted/Permitted snap-ins?

    Hi all,
    We are using Active Directory 2008R2, and recently we have a issue about GPO. The situation is:
    We enabled the  "Restrict users to the explicitly permitted list of snap-ins" for some users(Windows XP and Windows 7), it located at "User Configuration\Policies\Administrative Templates\Windows Components\Microsoft Management Console". After then, these
    users could not open task scheduler anymore, it noticed "The snap-in below, referenced in this document, has been restricted by policy. Contact your administrator for details."
    I tried to enable permit use of task scheduler but just could not find it from "Restricted/Permitted snap-ins".
    Is this sort of a bug or I went to the wrong place? Does anyone aware of this? Any feedback is appreciated!

    Hi,
    Yes, there is no exist setting to explicitly permit Task Scheduler if you enabled "Restrict users to the explicitly permitted list of snap-ins". As a workground, you can use some custom adm file. You can refer to this link for a sample:
    http://www.mombu.com/microsoft/windows-group-policy/t-vista-mmc-task-scheduler-not-in-group-policy-3677534.html
    (Note: Since the site is not hosted by Microsoft, the link may change without notice. Microsoft does not guarantee the accuracy of this information.)
    Regards,
    Cicely

  • Task Scheduler UI crashes upon launch

    Hello,
    Last week, a customer called to report that her workstation was not booting. Long story short: There was a problem with the hard drive. I cloned the drive to a new disk and that brought the system back up. 
    While looking for damage after the clone, I noticed that the Task Scheduler UI does not launch. Specifically, if you open "Task Scheduler" from the Start menu, nothing appears. If you access the Task Schedule from Computer Management, Computer
    Management closes unexpected. (The same thing happens when you add-in the Task Scheduler to a new MMC.)
    To be sure, this problem could pre-date the hard drive problem. I really don't know.
    I have no reason to believe that task scheduling isn't working. The service runs and I've scheduled a task from the command line successfully. But, admittedly, the loss of user-friendliness is kind of a big deal to the end user. 
    The only evidence I've been able to track down so far is that with each crash, the Application Log shows
    EventID 1023: 
    .NET Runtime version 2.0.50727.5477 - Fatal Execution Engine Error (000007FEF80C54F6) (80131506)
    What I've tried:
    1. I've run the dotnet repair tool from Microsoft which found problems with 4.5 and repaired them.
    2. I ran SFC which reported it found problems and fixed them.
    3. I've tried known-good copies of Tasksched.msc.
    4. I've cleared out both the Tasks folder and the cache in the registry to see if a particular entry was causing the crash. No difference. 
    What am I missing?
    Cheers,
    m

    Hi,
    What’s the result after you run this repair tool?
    Microsoft .NET Framework Repair Tool
    http://www.microsoft.com/en-us/download/details.aspx?id=30135
    check if you can apply this hotfix:
    FIX: The top of the call stack shows the mscorwks!WKS::gc_heap::mark_object_simple function after an exception occurs in a .NET Framework 2.0-based application
    http://support.microsoft.com/kb/974372
    Alex Zhao
    TechNet Community Support

  • KM Task Scheduler , retrieve IPortalComponentRequest request

    Hello,
    I would like to use KM Task Scheduler :
    public void run( String id, Properties properties ) {
         IPortalComponentRequest request;
         String location = request.getPublicResourcePath();
    It's normal, it doesn't work ! How can I use IPortalComponentRequest for my schedule task ?
    Thanks a lot
    Best regards,
    Aurélien

    Aurelien,
    ok then, place your xml file into any package of your project. For example:
    In package called "my.package.files" place file "myfile.xml"
    then wherever within your code (let's assume you have an class called MySchedullerTask) call next structure:
    URL url = MySchedullerTask.getClass().getClassLoader().getResource("my/package/files/myfile.xml");
    and then work with the file.
    Just one more note: non Java files are not build always into application PAR acrhive.
    To do so, you have to check in option:
    "Yes, I want the non java sources includet into the portal components jars"
    You will find this option in NWDS:
    Window -> Preferences -> SAP Enterprise Portal -> Application Development Studio.
    regards
    mz

  • All/any computers i have had for 10 years are, even though stand alone..forced to be a workstation on an unknown domain whose people set global policy through mmc and every exploit and probably more..they set global policy always know my passwords

    i could go on forever and the only way i can be helped is by remote and seeing irregularities for yourself or to physically come to where i am. denial of service, controlling which updates, controlling all services, devices..many unsigned drivers..use of
    many "legacy" parts, technology in computers..changing of most file extdoing...anyone out there who could help? thanks
    ensions..and icons, control of colours themes ..of cd disk..won't let me set up a printer always know any passwords including "setup" where i will change things only to have them change back..they control of course task manager mmc and anticipate
    with all kinds of rules what i can or can't do..enough .said..i have been a teacher at college level a broker with CIBC a boat captain and owned a number of businesses and I assure you these people or organization have cost me 100/000 of frustration not to
    mention over $200,000 in cash..they often crash my computers when i get close to new information on how/what they are i am rarely able to get any advice or  help  mainly because so many "experts" don't believe it is possible..they use every
    kind of network protocol, many at once plus remote so loop ras, unp and tunnelling etc..all software or security and spyware virus programs assume that if your computer shows as being on a network/domain then all activitied by the admin of that domain are
    ok..sso no protection..this also has happened tp hundreds of computers..o.s doesn't matter or linux or apple   xp, vista windows 7 etc

    That is a legitimate Mozilla newsletter. As it says in the email:
    You're receiving this email because you subscribed to receive email newsletters and information from Mozilla. If you do not wish to receive these newsletters, please click the Unsubscribe link below.
    Unsubscribe https://www.mozilla.org/en-US/newsletter/existing/ad9febcf-65ac-41fd-810b-798945f448f3/
    Modify your preferences https://www.mozilla.org/en-US/newsletter/existing/ad9febcf-65ac-41fd-810b-798945f448f3/ "

  • Unable to receive an email by task scheduler on audit failure in windows server 2008 r2 security log

    Deal All,
    I am sorry in advance if i would be on wrong forum, i have created a task on Server 2008 r2 Domain controller that when an audit failure event triggered in windows security log then an email should reach on my email ID, but unfortunately, nothing happen
    on audit failure.i receive no email from task scheduler.
    kindly suggest me to resolve the issue. I have created Email task on  event ID 4771.
    Thanks.
    Zeeshan Ibrahim Network Administrator

    Hi Zeeshan,
    I have found a hotfix against the same error messages, though it applies to Windows Vista and Windows Server 2008, I am not sure if it will work on your machine.
    Please refer to this KB article below:
    Duplicate triggers are generated incorrectly in scheduled tasks in Windows Vista or in Windows Server 2008
    http://support.microsoft.com/kb/2617046
    Please feel free to let us know if this hotfix couldn’t help you fix this issue.
    Best Regards,
    Amy Wang

  • Read the job Z_JOB from SM37 and re-schedule dynamically

    Hi All,
    I have one requirement where I need to schedule a job in background. The job Z_JOB has 10 steps in it and each step itu2019s calling different program with a variant. Now I need write a Z program to re-schedule the Z_JOB dynamically.
    I know how to schedule the job with multiple steps through program. (JOB_OPEN, Submit Statement, JOB_CLOSE). But my question is there any other way to read the job Z_JOB from SM37 and re-schedule dynamically. So that I can avoid this 10 SUBMIT programu2026??
    Thanks in Advance,
    Raghu.

    Hello Raghu  ,
    JOB_OPEN ( Opens  a BG job )
    JOB_SUBMIT ( Insert a background Task)
    JOB_CLOSE (Closes a BG job)
    Are the 3 function module by with you can create a have  a bg job sheduled programatically...!
    Hope it helps
    Edited by: Anup Deshmukh on May 3, 2010 12:36 PM

  • Creating Oracle Job with Task Scheduler

    Hi,
    Platform: Oracle10g R2, Windows 2003 Server
    I have the below script on my Linux server that backups up the database. It's run via crontab.
    --------------- script ---------------------
    -- Environment variables goes here
    cd $ORACLE_HOME/bin
    ./rman target / <<EOF
    startup mount;
    backup database plus archivelog delete input;
    delete noprompt obsolete;
    alter database open;
    I want something similar I can do on windows like .bat file that I can schedule to run via Task Scheduler.
    Any help please?
    Thnaks and regards,
    Creems

    Hi AG,
    I tried to do that but it's not working.
    But I did something similar for auto-delete of flashback logs and it works but the backup thing aint working.
    What can I do?
    Here is what I did for the auto-flashback delete
    =======
    RunSQL.bat
    =======
    -- content of RunSQL.bat
    @ECHO OFF
    TITLE Resetting Flashback Logs
    CLS
    ECHO Please be patient. This will take some time.
    ECHO.
    ECHO.
    SET ORACLE_SID=PROD
    sqlplus.exe /nolog @del_flashback.sql
    ECHO.
    ECHO.
    ECHO FLASHBACKs reset. Please continue with your other procedures.
    ECHO.
    ==========
    del_flashback.sql
    ==========
    -- content of del_flashback.sql
    connect /nolog
    conn sys/oracle as sysdba
    SHOW USER
    shutdown immediate
    startup mount
    alter database flashback off;
    alter database flashback on;
    alter database open;
    SHOW USER
    exit
    This works, but when I did the same with RMAN backup it doesn't.
    Any more help please?
    Thanks and regards,
    Creems

Maybe you are looking for

  • Help please new app user!

    Hi I have recently downloaded a free app named paint sparkles for my daughter & I have upgraded to allow the app to do more, I currently have this on my iPad, should the upgrade also show on my iPhone 5, as it is still showing the version without the

  • File Sync Will Not Resume

    I puased file syncing when I lost some data a few weeks back (thank you to the Adobe Staff who assisted me with this issue and worked to rectify the problem and recover my data). However now, after updating my Creative Cloud application, I cannot res

  • CR for VS, MSSQL, ConnectionInfo and "Application Name" in connection string

    I'm using Crystal Reports for Visual Studio 2013, latest version. I'm using the web CrystalReportViewer component. I'm setting the connection information, something like this: var tables = rpt.Database.Tables; foreach (Table table in tables)     var

  • ProTools 6 or 7 compatibility with Intel-Based macs

    I've heard people saying that ProTools LE 6 does not support Intel Core 2 Duo iMacs. Is that true?

  • Headphone jack on my iphone 5 doesn't work

    port feels too loose jack does not make proper connection