Windows Upgrade Offer Registration Now Available for New PCs Purchased on or after June 2, 2012
Windows Upgrade Offer Registration Now Available:
http://windowsteamblog.com/windows/b/bloggingwindows/archive/2012/08/20/windows-upgrade-offer-registration-now-available.aspx
Today, registration is officially open for the Windows Upgrade Offer we announced in May. If you purchase or have purchased an eligible Windows 7 PC anytime between June 2, 2012 and January 31, 2013 you will be able to purchase an upgrade to Windows 8 Pro for only $14.99 (U.S.) which will be redeemable when Windows 8 is generally available on October 26th. If you're still looking for a PC, check out some of our great Windows 7 PCs. Once you've purchased your PC you can come back and register for the offer.
Registration for the Windows Upgrade Offer is only for those who buy an eligible Windows 7 PC between June 2nd and January 31st, 2013.
Reply:
------------------------------------
Reply:
If in Australia?
Hi Skippy32519
Go to the following link.
Windows Upgrade Offer - Landing Page:
https://windowsupgradeoffer.com/
Select your Country and Language.
Click Continue on the next page and follow the instructions.
Regards
------------------------------------
Reply:
------------------------------------
Reply:
Does the upgrade allow the Windows 7 to be continued to be used in a VM on the same PC?
Hi
No.
Although the EULA for Windows 8 have been completely re-written the part about using an upgrade is the same.
You must have a Qualifying, licensed version of windows to install an upgrade version. When you install the upgrade version the license for the qualifying version becomes part of the upgrade license. So the qualifying version license can no longer be used.
According to the license, a VM is the same as a physical computer.
Regards
------------------------------------
Reply:
Oh, how about copying some files over from Windows 7 that are missing in Windows 8?
I would like to copy the Spider Solitaire files from Windows 7 if that is permissible. The Modern UI Spider Solitaire is useable on a PC. I can write an essay on that.
------------------------------------
Reply:
And for Swiss ?
Not on your site....
------------------------------------
Reply:
Windows 8 Upgrade doesn't seems be working as it should be. Because people who purchased the Windows 8 Upgrade Key for $14.99 can do the clean install. What's the point of offering an upgrade key which allows full clean installation? Is Windows 8 gone that cheap? No Value for the product? Is Microsoft aware of this? If so please do scrutinize this issue
Regards,
prathaprabhu
------------------------------------
Reply:
I have a problem with the purchase, when i did the checkout, the updater couldn´t process my order, but if It deducted the $ 40 from my MasterCard. And do not let me update. But if I took the $ 40. :'( I'm in Colombia South America.
- Edited by waltergs Tuesday, November 6, 2012 4:15 PM
------------------------------------
Reply:
Do you have the Promo Code? Also can you please explain your situation in detail.
Regards,
prathaprabhu
------------------------------------
Dear GREEKS
Why would Microsoft not think through COMMON SENSE THINGS? I have noticed that they snipping tool which I think has been a long time in coming (Again WHY?) but that being said, Why would you bring out a snipping tool and NOT PUT A PRINT ICON I IT!!!! Microsoft ARE YOU TRULY SOFT IN THE HEAD? WHO THINKS THROUGH THESE SCREW UPS? Please hire someone with some common sense. If need be call me I come work for free because No company should be portrayed as so ignorant
I bet you don't have the guts to print this, or worst YET answer it !!!!!!!!!!!
- Edited by Bobster459 Wednesday, November 7, 2012 8:01 PM
- Changed type Nicholas Li Friday, November 9, 2012 3:45 AM
Reply:
Hi,
Thank you for the feedback. We can copy the screenshot from Snipping Tool to Paint in order to print the pictures.
In addition, if you have any concerns about Windows 7 feature, we can submit our suggestions and feedbacks from the following link:
It is a public place where we can post our feedback.
Tracy Cai
TechNet Community Support
------------------------------------
32 bit VB6 application on 64 bit Windows 7
- Changed type Juke Chou Sunday, November 18, 2012 4:53 PM
Reply:
Hi,
I would like suggest you post the issue to MSDN forum for further help.
Regards.
Spencer
TechNet Community Support
------------------------------------
Locked out of 2008 Terminal Server!!!
Morning all,
I recently set up a terminal server with Terminal services. After logging in & out for all day, The next day when i went to login with the administrator account i got the following error.
_________________________________________
"""The task you are trying to do can't be complete because remote Desktop services is busy. Please try again in a few minutes. Other users should still be able to log on.""""
_________________________________________
And since there's no other profiles installed yet. When i went to login with another user it just times out with
_________________________________________
"""""Please wait for the user Profile Service.." I'v left it running for about 30 minutes."""""""""
_____________________________________
Can anyone Point me in the right direction on how to fix this Thanks :)
- Changed type Clarence Zhang Wednesday, November 21, 2012 7:29 AM
Reply:
There are two possible solutions. 1. If it happens to all clients, install the Microsoft hotfix.
| The task you are trying to do can't be completed because Remote Desktop |
2. If only some clients have this issue, it could be 3<sup>rd</sup> party security software and the client settigns. Please refer to these collections:
Bob Lin, MVP, MCSE & CNE Networking, Internet, Routing, VPN Troubleshooting on
How to Setup Windows, Network, VPN & Remote Access on------------------------------------
the AWESOME power of invoke-cmd
Invoke-command is one of the most useful features of powershell when managing multiple computers. But there are some issues with it such as trying to figure out which server came back with errors and which completed successfully does not make it easy. I've written a wrapper function called invoke-cmd to enhance invoke-command features to get the most out of psremoting. The ideas are based on Dan Farino's serveragent and run-agent command he wrote for Myspace which he created to work with powershell v1. But now v2 has psremoting so I thought why not use this builtin technology so here's what I've come up with so far. You must try it out on a few servers to truely see its potential and how it makes things much easier. I'm not sure where else to post this so I'm posting here to get suggestions from the community on how to make it better and to share freely something I think is really cool. The help is builtin so once you dot load the function into your session then you can "help invoke-cmd -full" to see details and lots of examples for beginners. Here's the description.
SYNOPSIS
Run commands on multiple computers asyncronously. Results are stored in global $icmd so you can avoid
running the command again to see the results. Alias is icmd.
By: David Lee
SYNTAX
invoke-cmd [[-Command] <Object>] [[-ComputerName] <String[]>] [[-ThrottleLimit] <Int32>] [[-TimeoutSeconds] <Int32>
] [[-GetExecTime] <Boolean>] [<CommonParameters>]
DESCRIPTION
This function allows us to run a command or scriptblock of commands to one or many computers asyncronously.
Security is builtin using kerberos and your current login user.
This relies on invoke-command to do the actual remoting. invoke-cmd enhances invoke-command by adding the following
features:
- Ability to pipe in a list of servers as well as a parameter.
- Much better error handling and presentation.
- Results are presented in a uniform way for better post processing.
- Timeout capability is managed properly since the -sessionoption doesn't seem to work.
- Added Success property so its easy to filter out the good or bad results depending on what we're looking for.
- If you forget to store the results in a variable initially, you can access the global $icmd to avoid running
the command again just to see the results.
- Can get execution time
Requirements:
- Powershell 2.0+
- PSRemoting must be enabled on both local and remote computer. (enable-psremoting)
- Execution policy need to allow access. (set-executionpolicy unrestricted)
- You must be an administrator on both the local and remote computer.
Disclaimer: With great power comes great responsibilities.
UPDATE:
download from scriptcenter
http://gallery.technet.microsoft.com/scriptcenter/the-AWESOME-power-of-1a650a62
Reply:
Submit it to the Script Repository.
http://gallery.technet.microsoft.com/scriptcenter
[string](0..33|%{[char][int](46+("686552495351636652556262185355647068516270555358646562655775 0645570").substring(($_*2),2))})-replace " "
------------------------------------
Reply:
------------------------------------
Reply:
Nice work! I recently started working on something similar, but your function is much more complete and, well, functional.
Al Dunbar -- remember to 'mark or propose as answer' or 'vote as helpful' as appropriate.
------------------------------------
Reply:
------------------------------------
Reply:
------------------------------------
Reply:
15 servers? How many windows client machines do you have?
I suggest you also post this request in the Q&A section in your galerry submission, and/or edit the description to ask for feedback along these lines.
Al Dunbar -- remember to 'mark or propose as answer' or 'vote as helpful' as appropriate.
------------------------------------
Reply:
------------------------------------
Exchange 2013 Error 8224
This error, on installation, is directly correlated to the Windows Firewall.
Error 8224 is easily resolved by checking the Windows Firewall Profile and either, A. Disable Domain Profile firewall as well as Private and Public Profles. B. Disable or turn off Windows Firewall and change the state of the service to Manual.
Once this action has been taken on ALL DC's, and then Each rebooted, validate your domain replication and netlogin services are available by starting at the root DC and validate if you can reach the other DC's via browser \\DC1... You should then see a minimum of two folders; NETLOGON and SYSVOL.. there may be other folders depending on your environment; but you MUST see these two folders from EVERY DC that is in your plan to launch or install Exchange 2013 on.
Cross validate on ALL DC's you can see all shares and this error will be a thing of the past.
- Changed type Fiona_Liao Friday, November 9, 2012 2:13 AM sharing
Reply:
------------------------------------
can i use default settings for all services running in sharepoint 2013
Hi,
I installed and try to configure sharepoint 2013 server(Enterprise edition).
While running configuration wizard it asked me to choose the services which will associate with this farm and there i selected all the services except lotus notes and then my central administration site was created with default services settings.
Now am i need to configure or change any service settings or can i leave it and work on default settings. Especially i want to use search service and user profile service synchronisation from AD.
When i see the search service i got this message "Where should users' searches go?"Provide the location of the global Search Center" To solve this if i create a new site collection with Enterprise search template and add that url into search service page would be sufficient or am i need to do anything else.
Thank you.
Reply:
for user profile service, if you want to import user from AD, you have to create a connection and start the synchronization service, start a new full synchronization.
http://technet.microsoft.com/en-us/library/ee794878(v=office.15).aspx
------------------------------------
Reply:
------------------------------------
Can Intune be used for OS Installation?
We are thinking about singing up for the Intune service (about 100 PCs), can the service do OS installs? If so, how does it work? PXE, WDS, etc...
Also, for the software deployment, are the software packages stored locally or in the cloud?
Thanks in advance,
Hamilton McWhorter
Reply:
Hi Hamilton,
No, you cannot deploy OS via Windows Intune. Software packages are stored in the cloud.
Thanks,
Jon L. - MSFT
------------------------------------
Microsoft Train Simulator ISO
- Changed type Nicholas Li Thursday, November 15, 2012 8:42 AM
Reply:
------------------------------------
Bug or Feature? ;) 2012 RDS sysprep unattend.xml doesn't join VD to a domain
Hi,
I try to create vDesktop collection providing unattend.xml file.
PS C:\Windows\system32\WindowsPowerShell\v1.0> New-RDVirtualDesktopCollection ` -PooledManaged ` -CollectionName "vDesktop" ` -StorageType LocalStorage ` -VirtualDesktopAllocation $RDDesktopAllocServers ` -VirtualDesktopTemplateHostServer "i5029-app040.regions.tax.nalog.ru" ` -VirtualDesktopTemplateName "vdiTemplate" ` -ConnectionBroker $RDCB ` -Domain "regions.tax.nalog.ru" ` -LocalStoragePath "D:\Hyper-V" ` -OU "ou=VDI,ou=Workstations,ou=IFNS5029,ou=UFNS50,dc=regions,dc=tax,dc=nalog,dc=ru" ` -UserGroups "i5029-AllUsers" ` -UserProfileDiskPath "\\i5029-app031\ProfileDisks" ` -MaxUserProfileDiskSizeGB 5 ` -VirtualDesktopNamePrefix "i5029-vdi-" ` -VirtualDesktopTemplateStoragePath "D:\Hyper-V" ` -VirtualDesktopPasswordAge 31 ` -CustomSysprepUnattendFilePath "\\i5029-app012\Soft\01 Microsoft\RemoteApp\unattend.xml" ` -Verbose -Debug
Powershell says following:
(Translation) Test-ManagedParam : Select unattended installation file without computer name.
ПОДРОБНО: Testing OU permissions
Test-ManagedParam : Укажите файл ответов для автоматической установки без имени компьютера.
C:\windows\system32\windowspowershell\v1.0\Modules\RemoteDesktop\VirtualDesktopCollection.psm1:398 знак:15
+ if( -not (Test-ManagedParam @validateParams -Type $type -VmNamePrefix $Virtu ...
+ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+ CategoryInfo : NotSpecified: (:) [Write-Error], WriteErrorException
+ FullyQualifiedErrorId : Microsoft.PowerShell.Commands.WriteErrorException,Test-ManagedParam
(Translation) Test-ManagedParam : Select unattended installation file without domain join settings.
ПОДРОБНО: Testing OU permissions
Test-ManagedParam : Укажите файл ответов для автоматической установки без информации о присоединении к домену.
C:\windows\system32\windowspowershell\v1.0\Modules\RemoteDesktop\VirtualDesktopCollection.psm1:398 знак:15
+ if( -not (Test-ManagedParam @validateParams -Type $type -VmNamePrefix $Virtu ...
+ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+ CategoryInfo : NotSpecified: (:) [Write-Error], WriteErrorException
+ FullyQualifiedErrorId : Microsoft.PowerShell.Commands.WriteErrorException,Test-ManagedParam
Ok, I remove these settings from unattend.xml and then it starts successfully.
But when VD is created, started and sysprepped, it turns out having random computer name and not joined a domain, and asking me for a network location (despite set in unattend.xml). Consequently, Start-RolloutVM process doesn't get "sysprep complete" info, and doesn't continue to the next VD.
.
What is curious, when I point unattend.xml WITH domain join settings and computer name to the new VD collection wizard, it says it needs Local account in unattend.xml, and doesn't say anything for computer name/domain.
After all, wizard doesn't even run Start-RolloutVM, fails with "Cannot get collection" error.
.
Quite surprising, you know... ;)
Welcome to discuss!
- Edited by Eugene-p1 Friday, November 9, 2012 12:08 AM
Reply:
VirtualDesktopCollection.ps1
Function Test-ManagedParam
Quote:
#Make sure computer name and domain join nodes are not present $node = $root.SelectSingleNode("//a:*[translate(local-name(), 'ABCDEFGHIJKLMNOPQRSTUVWXYZ','abcdefghijklmnopqrstuvwxyz')='computername']",$nsMgr) if($node) { Write-Error (Get-ResourceString InvalidUnattendNoCompName) return $false } $node = $root.SelectSingleNode("//a:*[translate(local-name(), 'ABCDEFGHIJKLMNOPQRSTUVWXYZ','abcdefghijklmnopqrstuvwxyz')='component' and ` translate(@*,'ABCDEFGHIJKLMNOPQRSTUVWXYZ','abcdefghijklmnopqrstuvwxyz')='microsoft-windows-unattendedjoin']",$nsMgr) if($node) { Write-Error (Get-ResourceString InvalidUnattendNoDomainJoin) return $false } #todo:?make sure skip OOBE screen settings are in place? Why doesn't it assign computer name/domain then?------------------------------------
On a SSD Windows 8 Pro 64bit installation move "Users" files, "Program Files" and "Program Files (x86)" to another hard drive.
Hi to all,
I just recently upgraded from Win7Pro to Win8Pro 64bit. The installation was done using the Upgrade DVD choosing not to keep anything from the previous installation.
Since my installation is on a 60Gb SSD, I immediately wanted to free as much as possible of valuable disk space from system drive.
Among other things like disabling hibernation etc, I decided to move the Users directory as well as the Program Files, both 64 and x86 version.
The method I used was the following:
1. Boot from original DVD media.
2. In first setup screen Shift+F10 to bring up the Command Prompt window
3. Robocopy C:\Users D:\Users /copyall /mir /xj
4. Rmdir C:/Users /S /Q
5. Mklink c:\Users d:\Users /J
Everything worked perfectly. Now I tried to do the same for Program Files (32 & 64 bit folders). The method used was exactly the same.
Everything worked fine BUT, Internet Explorer in the "Metro" environment refused to start.
All other applications, at least the ones I tested, started OK. Only IE did not start, by stopping in the blue screen with the big logo e icon in center.
I also noticed that when ever I tried to start the IE in Metro, the program failed like I said, but at the same time it silently was started in the desktop environment and if I left the metro and clicked the Desktop IE was open there.
The errors recorded in the event logs were:
a. In Application Log: Activation of app DefaultBrowser_NOPUBLISHERID!Microsoft.InternetExplorer.Default failed with error: The app didn't start in the required time. See the Microsoft-Windows-TWinUI/Operational log for additional information.
b. and in System Log: The server DefaultBrowser.DefaultBrowserActivatableClass did not register with DCOM within the required timeout.
So I had to go back and reverse the Program Files and Program Files (x86) operation by deleting junctions and Robocopying the data back to their original place. The good thing is that Windows proved to be enough fault tolerant and worked OK after this.
So at this moment only my Users folder remains transferred. Still because I think that this is a very important "hack" in terms of storage space gained, I believe that it's worth to try for someone to achieve this. So I posted the article/question in order to share the experience and hopefully listen to some ideas or even solutions.
Greetings to all from Greece.
...btw, Windows 8 64bit, on a Phenom II machine with 8Gb 800Mhz DDR2 Ram with SSD System drive, truly is a VERY FAST thing...
Artificial intelligence cannot ever beat natural imbecility.
Reply:
Hi to all,
I just recently upgraded from Win7Pro to Win8Pro 64bit. The installation was done using the Upgrade DVD choosing not to keep anything from the previous installation.
Since my installation is on a 60Gb SSD, I immediately wanted to free as much as possible of valuable disk space from system drive.
Among other things like disabling hibernation etc, I decided to move the Users directory as well as the Program Files, both 64 and x86 version.
The method I used was the following:
1. Boot from original DVD media.
2. In first setup screen Shift+F10 to bring up the Command Prompt window
3. Robocopy C:\Users D:\Users /copyall /mir /xj
4. Rmdir C:/Users /S /Q
5. Mklink c:\Users d:\Users /J
Everything worked perfectly. Now I tried to do the same for Program Files (32 & 64 bit folders). The method used was exactly the same.
Everything worked fine BUT, Internet Explorer in the "Metro" environment refused to start.
All other applications, at least the ones I tested, started OK. Only IE did not start, by stopping in the blue screen with the big logo e icon in center.
I also noticed that when ever I tried to start the IE in Metro, the program failed like I said, but at the same time it silently was started in the desktop environment and if I left the metro and clicked the Desktop IE was open there.
The errors recorded in the event logs were:
a. In Application Log: Activation of app DefaultBrowser_NOPUBLISHERID!Microsoft.InternetExplorer.Default failed with error: The app didn't start in the required time. See the Microsoft-Windows-TWinUI/Operational log for additional information.
b. and in System Log: The server DefaultBrowser.DefaultBrowserActivatableClass did not register with DCOM within the required timeout.
So I had to go back and reverse the Program Files and Program Files (x86) operation by deleting junctions and Robocopying the data back to their original place. The good thing is that Windows proved to be enough fault tolerant and worked OK after this.
So at this moment only my Users folder remains transferred. Still because I think that this is a very important "hack" in terms of storage space gained, I believe that it's worth to try for someone to achieve this. So I posted the article/question in order to share the experience and hopefully listen to some ideas or even solutions.
Greetings to all from Greece.
...btw, Windows 8 64bit, on a Phenom II machine with 8Gb 800Mhz DDR2 Ram with SSD System drive, truly is a VERY FAST thing...
Artificial intelligence cannot ever beat natural imbecility.
Hello,
I experienced exactly the same problem just updating to Windows 8 Pro from Vista on my Notebook Samsung X360. In addiction I can't start IE10 on desktop too, when I click on IE icon nothing happens.... I could start IE10 with "run as Administrator" option on desktop.
Thank you for help!
------------------------------------
Reply:
@CarlonBH
I forgot to mention. Another thing I did was to go to Control panel -> Add Remove Windows Features -> Remove IE 10 (Uncheck) and Ok and Reboot.
IE was removed.
Then I tried to add it back, using: Control panel -> Add Remove Windows Features -> Remove IE 10 (Check), buy unfortunately this did not work. Then I went back to restoring the original placement of Program files and then I reinstalled IE 10, and everything worked.
Would it be a good idea to try this? Having of course in mind that if IE does not reinstall you will have to use something like Chrome, Mozilla etc...
Regards.
Artificial intelligence cannot ever beat natural imbecility.
- Edited by Themis Zarotiadis Tuesday, November 6, 2012 10:20 PM
------------------------------------
Reply:
Hi,
This is awesome. I just had one question, why is the rmdir step before Mklink?
I accidentally did rmdir c:\users instead of c:/ as you wrote. I think it delete my users directory and I couldn't do the Mklink step.
Will things be different if I do the C:/ or should I do the MKlink first?
I had to reinstall windows again so I want to make sure I get this right.
Thanks for the help!
------------------------------------
Reply:
The rmdir part is absolutely needed because you cannot create a junction (mklink) with the name of an existing folder. The real Users directory on C:\ should have been removed before creating the mklink for it.
The rmdir C:/Users /S /Q is obviously a typo error.
The correct is C:\Users /S /Q
Anyway this is not a problem since if you tried to run rmdir c:/Users /S /Q you have got the "Invalid Switch" message.
Also an advice: This actions should be tried only if you really know what you are doing.
Hope I helped.
Artificial intelligence cannot ever beat natural imbecility.
------------------------------------
Exchange 2010 Certificates - Wildcard or Static Name Entries?
Hello everyone, I have a dilemma.
I am implementing two exchange 2010 SP2 servers. I am changing out our DNS structure for them, currently we use sub-domains of our domain (eg. m.domain.com, exchange.domain.com.) I have plans to move each exchange server to a sub-domain of m.domain.com (eg. ex1.m.domain.com and ex2.m.domain.com.) I believe using a wildcard certificate will be the cheapest and most beneficial approach to future company growth, however that isn't as secure as specifically identify each FQDN to use.
So if I use wildcard certificates I'll need to limit the amount of incompatibilities. My thought is to use:
- domain.com
- *.domain.com
- *.m.domain.com (instead of using *.*.domain.com)
That leaves me with a single certificate and a standard price, as 3 domains are allowed with a single purchase.
Now if I were to purchase certificates using the FQDN of each service/device I'll need more SAN entries. For instance:
- autodiscover.m.domain.com
- m.domain.com (for load balancer, not yet implemented)
- domain.com
- ex1.m.domain.com
- ex2.m.domain.com
This option will add an extra $100 do the purchase and limits me to using the certificate for those services. Anyone have any suggestions? Am I missing any FQDN entries?
Entrust.com allows 3 domains for the price of the UC certificate, more SANs can be added for an additional charge. Can I get my set up down to using just 3 domains?
Reply:
------------------------------------
Wireless Issue with Windows 8 upgrade on ASUS Zenbook UX31E-71 not able to connect.
Reply:
try this solution it worked for me
http://www.nous3.com/2012/10/31/how-to-connect-to-wifi-wpa-2-in-windows-8/
but I am not responsible about any problems because the old driver not really compatible with windows 8
hope microsoft or atheros fixing this problem enough suffering
------------------------------------
Trying to Remove Database with disconnected mailboxes that have a blank "DisconnectReason"
I've got a DB that I'm trying to get rid of and have purged it of all disconnected mailboxes, except 3 that are left. These 3 mailboxes (2 former users, 1 SystemMailbox***) do not have a value for DisconnectReason for some reason.
Things I've tried:
Get-Mailbox -Arbitration (this does not show any arbitration or archive mailboxes on this DB I'm trying to delete)
Remove-Mailbox -Database "DB01" -Identity "<MapiIdentity GUID>" -MailboxState <tried SoftDeleted, Disabled, Blank, *) - This option does not work either, it requires a MailboxState value. The only values avaialble for this parameter are either SoftDeleted or Disabled, neither of which work. Tried an asterisk but it threw back an error
I thought about going through AD and look for an attribute that I could manually change so that the mailboxes have a value of SoftDeleted or Disabled, but I don't know where in AD a disconnected mailbox would be pointing to.
Any suggestions?
Reply:
Hi
What do you get back from:
Get-Mailbox -Database DB01
Steve
------------------------------------
Reply:
------------------------------------
Reply:
------------------------------------
Reply:
------------------------------------
Reply:
------------------------------------
Payment Issue
I purchased win8 ..
the cost was
| $37.34 CAD |
|---|
but the microsoft assistance said "we couldn't process your order"
------------------------------------------------------------------
but the bank sent me a message saying that the payment has successfully done !
- Changed type Arthur Xie Monday, October 29, 2012 2:29 AM
Reply:
- Edited by Icydead Friday, October 26, 2012 8:46 PM
------------------------------------
Reply:
Yeah,
same problem. Money is reserved from my account...not yet fully gone, but soon it is. No windows 8 to be seen anywhere though.
Uppgrade Assistant says it couldn't process my order. Well it sure could process those moneys out of my bank account. What the hell?
-Arto Hoffrén
------------------------------------
Reply:
If it could not process the order it means you did not tick the terms and conditions box (as I found out). After I did I then had the download.
Yet to find out whether I have been double charged.
------------------------------------
Reply:
------------------------------------
Reply:
------------------------------------
Reply:
It's has been almost 2 weeks and nobody could solved that problem !
they told me they would call me within 2 days !!!!!!!!
and now I'm trying to call them and the mobile says it's not reachable ..!
WTH !!!!!!!
that's really pissing me off !
------------------------------------
Create Management Agent wizard hangs on Connect to Database screen if SQL Server address formatted incorrectly
Hi,
Just thought I'd share my solution to a problem in case someone else runs into it. Using FIM 2010 R2 on Windows 2008 R2 SP1. This is a lab setup with Service, Sync Service and Portal on one server; have not installed Password Reg/Reset. I created a SQL Server MA without issues. Now I'm trying to create a FIM Service MA using the Create wizard in the Synchronization Service Manager. On the "Connect to Database" screen I fill in what I think are the right values, click Next, and... nothing happens. For many minutes. Event Viewer logs (Application Log and the FIM-specific logs) don't tell me anything. Back button does nothing. Cancel button does nothing. Sync Service Manager seems frozen.
Then I realize that, in the Server field, between the server FQDN and the instance name (this is NOT using a named instance), I put the slash the wrong way (/ instead of \). Killed the Sync Service Manager process, started fresh, put the proper slash - and I can proceed.
I want to know if everyone would like foundation to work on windows7/vista
Reply:
You can install SharePoint 2010 on a Windows 7 PC for development.
------------------------------------
Reply:
If your machine has at least 8 gig's of ram and a dual core processor, all you need is a Windows Server install disk.
Last I checked Windows Server 2012 is still in preview mode and you can download it for the 180 day evaluation.
http://technet.microsoft.com/en-us/evalcenter/hh670538.aspx
Now, just use Virtual Box.. www.virtualbox.org to create a virtual machine running Windwos Server 2012 and install SharePoint Foundation on the virtual machine. You can run the virtual machine on Windows 7 using VirtualBox.
So at most, eventually you would need a full version of Windows Server, which is 500-800$ for the standard version
Actually, on the link above, you can download the evaluation VHD, which is a virtual machine already set up. Just attach the VHD to an IDE Controller in Virtual Box and boot it up.
My Blog: http://www.thesug.org/Blogs/ryan_mann1/default.aspx Website: Under Construction
------------------------------------
How to get SPGroups from a SharePoint Online Site in a Sandboxed WebPart
Hey all,
I'm trying to get SPGroups from a SharePoint Online Site using a Sandboxed WebPart, but its not working... When it runs the following error is shown:
WebPart Error: Request for code execution in safe mode. (rough translation, cause the original message is displayed in Portuguese (pt-Br))
Part of the used code:
using (SPWeb spWeb = SPContext.Current.Site.RootWeb)
{
foreach (SPGroup group in spWeb.Groups)
{...}
}
Any help will be much appreciated.
Tks.
Reply:
Can you trying it using ClientObject model(CSOM) . Pseudo code will be Like
using(ClientContext ctx = GetAuthenticatedContext()) //GetAuthenticatedContext will be a private function returning authenticated context using credentials
{
var groups = ctx.Web.SiteGroups; // Here is group collection.
..........
}
From your code it seems like you are using Server Object Model. Please try with CSOM
jaik
------------------------------------
Reply:
Hey Jaik,
Thanks for your attention... But I had to change my approach, now I'm looking for users, using User Information List, instead the groups.
Best regards.
Diego.
------------------------------------
Reply:
jaik
------------------------------------
Reply:
Hey Jaik...
I'm trying to use the client context.... but I'm still getting this error:
System.Security.SecurityException: That assembly does not allow partially trusted callers.
The action that failed was:
LinkDemand
The Zone of the assembly that failed was:
MyComputer
I'm referencing the dll: Microsoft.SharePoint.Client
In my AssemblyInfo has the line: [assembly: AllowPartiallyTrustedCallers()]
Here is the code:
using (ClientContext ctx = new ClientContext(SPContext.Current.Web.Url))
{
GroupCollection groups = ctx.Web.SiteGroups;
foreach (Group group in groups)
{
if (group.Title != null && !this.GroupsToExclude.Contains(group.Title))
{
foreach (User user in group.Users)
{
urlPicture = SPContext.Current.Web.Lists[this.UserInformationList].GetItemById(user.Id)["Picture"] == null ? SPContext.Current.Web.Url + "/_layouts/images/person.gif" : SPContext.Current.Web.Lists[this.UserInformationList].GetItemById(user.Id)["Picture"].ToString();
urlPicture = urlPicture.Contains(",") ? urlPicture.Split(',')[0] : urlPicture;
EmployeeInfo employee = new EmployeeInfo();
employee.Id = user.Id.ToString();
employee.Email = user.Email == null ? "" : user.Email;
employee.CurrentGroup = group.Title;
employee.UserName = user.Title == null ? "" : user.Title;
employee.Picture = urlPicture;
employees.Add(employee);
}
}
}
}
Any idea to solve this problem?
Tks...
| |
- Edited by Diego de Souza Thursday, November 8, 2012 6:23 PM
------------------------------------
Is HyperV for Win8 replacing MED-V?
...
- Moved by BrianEhMVP Thursday, November 8, 2012 5:02 PM (From:Hyper-V)
- Changed type Nicholas Li Thursday, November 15, 2012 9:45 AM
Reply:
There is as I see it, kind of lacking features in the Hyper-V for Windows clients. There will be no in-box feature for seamless app. I think also that the XP Mode for Win 7 was a way if I did not need the MED-V infrastructure.
There is a possibility that there will be some third party software that will enable for seamless app integration.
------------------------------------
Reply:
tim
------------------------------------
Reply:
------------------------------------
When submit the infopath form need to open an another infopath Form
Dear Friends
I have a Infopath Form to Submit Basic infomation,
When submit that form, based on the inputs and current user create a new form using another infopath template.
Please guide me how to open another infopath Form using infopath code behind (c#)
Advance Thanks
Regards
Jenkins NS
Thanks & Regards Jenkins
Reply:
Hi,
Please check the below:
http://blogs.msdn.com/b/timpash/archive/2006/07/27/680717.aspx
http://www.infopathdev.com/forums/p/1114/3943.aspx
Hope it helps
------------------------------------
Reply:
Thanks venkatzeus
I tried that blog solutions, but no luck
Regards
Jenkins NS
Thanks & Regards Jenkins
------------------------------------
Reply:
Hi,
Do you get any error when you tried the solution?
------------------------------------
Reply:
Yes
Microsoft.Office.InfoPath.Application' does not contain a definition for 'XDocuments'
Also i have tried with google for XDocuments class library for Infopath, but no luck
Sorry please correct me
Thanks & Regards Jenkins
------------------------------------
Reply:
HI,
have you used:
using System.Xml.Linq;
using Microsoft.Office.Interop.Infopath
And added the reference
Microsoft.Office.Interop.Infopath.dll, and a reference to System.Xml.Linq.dll.
------------------------------------
No comments:
Post a Comment