Displaying Chinese in Powershell and Powershell ISE

I have a PS that retrieves file names and URLs from webpages, download files, display file names and download progress on screen and save files on disk.
file names are Chinese and were displayed correctly in Chinese both in Powershell console and in Powershell ISE before. But now they are displayed correctly only in Powershell ISE, not in Powershell console anymore. Any suggestion? thanks
 

I experienced the same with Japanese Characters.
If you are using Invoke-WebRequest,
you can try this.
$JP_MSSITE = Invoke-WebRequest www.microsoft.co.jp
if ( $JP_MSSITE.BaseResponse.ContentType.Contains("charset=") )
$TITLE = $JP_MSSITE.ParsedHtml.title
else
$METADATAS = $JP_MSSITE.ParsedHtml.getElementsByTagName("meta")
if ( $METADATAS.charset -ne $null) {
$CHARSET = $METADATAS.charset
}else{
ForEach ($METADATA in $METADATAS) {
if( $METADATA.charset -ne $null ){
$CHARSET = $METADATA.charset
break
if($METADATA.content -match 'text/html;.*charset=(.*)|charset=(.*);.*text/html')
$CHARSET = $matches[1]
break
try {
$TITLE =[System.Text.Encoding]::GetEncoding($CHARSET).GetString([System.Text.Encoding]::GetEncoding("ISO-8859-1").GetBytes($JP_MSSITE.ParsedHtml.title))
}catch{
$TITLE = "Not supported"
Write-Host $TITLE
It was asked here.
https://social.technet.microsoft.com/Forums/windowsserver/en-US/cbf40856-9157-42ae-8127-0328b4664405/cant-show-content-of-invokewebrequest-in-unicode?forum=winserverpowershell#cbf40856-9157-42ae-8127-0328b4664405

Similar Messages

  • Chinese Data Fields not displaying Chinese Characters

    Hi There,
    Wonder if someone can help. We are currently running reports in Crystal 8.5 but are in the process of upgrading our business systems to latest version and this includes converting all our Crystal 8.5 reports to Crystal Reports XI R2 SP4.
    During the process we are experiencing some difficulties in displaying Chinese characters, which have previously worked fine in version 8.5. The system we are running Crystal from has Oracle client 11 installed and the OS system locale is set to Chinese PRC. Our application is displaying Chinese characters properly and if we have any text fields on the report, these are also displaying properly when changing Font to Arial Unicode MS. The only thing that doesn't display properly is the field data which after checking has the correct Chinese data stored in the database. For some reason Crystal 11.5 doesn't seem to be transferring the data correctly which points to some sort of encoding problem.
    Is there something I am missing here or is there something else I need to install for this to work?
    Any hep would be appreciated.

    What is your Oracle database's language set? Is it set to UTF-8 or non UTF-8 (such as American_America.WE8ISO8859P1" )?
    There is a similar issue tracked under ID ADAPT00528561 (Crystal cannot display non-UTF-8 Chinese characters from an Oracle database ) and has been fixed and you should set the following registry key to make it effective:
    Set the following registry key "UseOSLocaleForConversion" to "Yes" under:
    HKEY_LOCAL_MACHINE\Software\Business Objects\Suite 11.5\Crystal Reports\Database\Oracle

  • Netbeans Issue: Servlet do not display Chinese UTF-8 properly

    Netbeans Issue: Servlet do not display Chinese UTF-8 properly
    Java Version: JDK1.5.0_01, JRE1.5.0_01 (International version)
    Netbeans Version: Netbeans IDE 4.0
    OS: Windows XP Personal Edition
    Dear Sirs,
    First at all thanks for reading this post. I am having the following issue. I am creating an application using html pages and servlets. I am using Chinese and English languages on them (html encoding UTF-8).
    I created a project in Netbeans and added an idex.html screen reporting to a servlet. Both index.html and in the servlet generated html page contains the line:
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    Additional, I setup the character code settings in Netbeans:
    (tools-options-Java sources-Expert-default encoding=UTF-8
    When I run the project, index.html displays itself perfectly, with the Chinese characters displayed properly. The problem comes when the html created servlet is displayed, which instead of the Chinese characters some strange characters are displayed (�� instead of Chinese).
    I have tried different encodings from http://java.sun.com/j2se/1.4.2/docs/guide/intl/encoding.doc.html without any luck. I also setup the encoding of the file itself (using right click-properties in the project menu of Netbeans).
    Also, when I am editing the servlet, the characters are displayed properly. I type them directly without any issue, but then the display is wrong at runtime.
    Also, just in case this have something to do with the problem, my PC was bought in US, therefore the default character set is not Chinese. I had to install the Chinese typing stuff later on. But like I said earlier, the html page is displayed properly, so I really think is some problem with Netbeans.
    After a week trying to find a solution, I decided to post it here in the hopes that someone will show me the way of the light.
    Thanks in advance for any ideas or help provided
    Aral.

    Hi, thanks for your help. However I think the problem his more complex than it seems. Here is my doPost method (the important parts anyway):
    response.setCharacterEncoding("UTF-8"); //Not necessary because the next line should take care of it, but anyways...
    response.setContentType("text/html; charset=UTF-8; pageEncoding=UTF-8");
    PrintWriter out = response.getWriter();
    out.println("<html>");
    out.println("<head>");
    out.println("<meta http-equiv='Content-Language' content='en-us'>");
    out.println("<meta http-equiv='Content-Type' content='text/html; charset=utf-8; pageEncoding=utf-8'>"); //Again not necessary line, but anyways
    out.println("<title>Servlet</title>");
    out.println("</head>");
    out.println("<body>");
    out.println("this is a test &#20320;&#22909; this is a test");
    out.println("</body>");
    out.println("</html>");
    out.close();
    This servlet is called from a html file. Also, when I load this in the browser, I right click on the screen and I can see that UTF-8 is setup allright. Doing some detective job I found that:
    - If the editor displays the characters perfectly and...
    - Other html pages (no servlets) in the same application can display chinese characters well and...
    - I have configured the encoding as UTF-8 in the servlet properties and in general properties and...
    - The file "web.xml" contains the encoding UTF-8 in its first line then...
    ...my only guess is that something goes wrong during the building of the project itself (ant?). Unfortunately I have no idea about configuring ant to that level, but I began to think that the problem may be there, during the compilation...
    Any ideas?
    Once more, thanks for any help or advice provided.
    Aral.

  • Excel with powershell and this big problem of locale

    Hi Folks, I'm getting C R A Z Y with this Excel/Powershell Stuff...
    MY display language is EN
    My input language is fr_CH
    the following code : 
    function Invoke([object]$m, [string]$method, $parameters)
    $m.PSBase.GetType().InvokeMember(
    $method, [Reflection.BindingFlags]::InvokeMethod, $null, $m, $parameters,$ciUS)
    $ciUS = [System.Globalization.CultureInfo]'fr-CH'
    $objExcel = New-object -com Excel.Application
    $objExcel.visible = $True
    $ci = [System.Globalization.CultureInfo]'fr-CH'
    $objWorkbook = Invoke $objExcel.Workbooks Add
    $objWorksheet = $objWorkbook.Worksheets.Item(1)
    $objWorksheet.Cells.Item(1,1).FormulaLocal = "A value in cell A1."
    Invoke $objWorkbook SaveAs "C:ScriptsTest.xls" > $null
    Invoke $objWorkbook Close 0 > $null
    $objExcel.Quit()
    throw me the error : 
    Exception calling "InvokeMember" with "6" argument(s): "Object does not match target type."
    At line:3 char:1
    + $m.PSBase.GetType().InvokeMember(
    + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
        + CategoryInfo          : NotSpecified: (:) [], MethodInvocationException
        + FullyQualifiedErrorId : TargetException
    You cannot call a method on a null-valued expression.
    At line:11 char:1
    + $objWorksheet = $objWorkbook.Worksheets.Item(1)
    + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
        + CategoryInfo          : InvalidOperation: (:) [], RuntimeException
        + FullyQualifiedErrorId : InvokeMethodOnNull
    Basically this happend when you have english Excel with non english locale.
    My OS is in english but my Keyboard is in French-Swiss.
    Please help me I'm getting crazy...
    MCITP Enterprise Administrator / Server Administrator

    This might be helpful.
    http://dmitrysotnikov.wordpress.com/2008/02/22/powershell-help-broken-on-localized-versions-of-windows/
    The problem seems to be that PowerShell v1 for Windows Vista and PowerShell v2 CTP for all systems are storing the language neutral (English) help system in the en-US subfolder of the PowerShell folder.
    On a localized versions of Windows, PowerShell seems to be looking for a subfolder with its own locale (e.g. de-DE for Germany, ru-RU for Russia, and so on) and does not fail over to en-US if the folder is not found.
    RESOLUTION
    Apply the language pack for your language so your local version of help gets added to the system.
    If the language pack is not available, copy or rename the en-US folder to match your Windows locale. To learn your locale run the following command in the PowerShell prompt:
    [System.Globalization.CultureInfo]::CurrentUICulture
    Thanks Azam When you see answers please Mark as Answer if Helpful..vote as helpful.

  • Powershell and Sharepoint workflow

    Oke I got this a really strange problem.
    I got a ps1 file with powershell code in it. The code create a list item in sharepoint with all information and on the information I want to trigger a workflow.
    But now if I activated the ps1 file powershell as administrator(automatic) and then run the code thats in the file. But no Workflow tiggered in sharepoint the workflow is automatic activated when a new item is created.
    And the strange thing is if I open my script with notepad copy the text insert it into powershell and press enter my workflow runs...
    So any1 have an idea to fix this?

    Below is code snippet in c#.net for fetching all the attachements for a specific list item.
    try
                    // Set the Site Url
                    SPSite objSite = new SPSite("http://Testsite/");
                    using (SPWeb objWeb = objSite.OpenWeb())
                        objWeb.AllowUnsafeUpdates = true;
                        // Get the List
                        SPList objList = objWeb.Lists["MyList"];
                        // Get the item by ID
                        SPListItem objItem = objList.GetItemById(1);
                        // Get the attachments of the item
                        SPAttachmentCollection objAttchments = objItem.Attachments;
                        // Iterate the attachments
                        foreach (string fileName in objItem.Attachments)
                            // Perform action on
    the extracted attachment
     Hope it
    answer the questions.Any suggestions are appreciated.
    Cheers, Eliza

  • MALWARE AND POWERSHELL

    Has anyone ever seen or know of any malware, virus, or downloadable executable that was written with Powershell? I recently experienced a few contiguous events that all point to either malware or virus attempt when I clicked on an image of a pot belly
    pig (I know right).
    This is what happened:
    1.) Click on little piggy picture and Netflix freezes up then doesn't respond.
    2.) Keyboard becomes unresponsive; I pulled the cable from the NIC card.
    3.) Then a dialog box popped up stating that Powershell had become unresponsive (something like that) and provided a list of errors; this occurred almost immediately after I disconnected from the internet.
    4.) So I decided to deal with this unexplainable chain of events at a later date. Now I need to get some Visual Studio 2013 files off of the computer that this occurred on, so I start it back up and open up VS it goes through the start up process
    then tells me that my license has gone "stale", that's right the word stale. Has Microsoft ever used the word stale to describe the state of a license for any product?
    5.) After the VS license warning again the dialog box for Powershell pops up telling me that Powershell has stopped unexpectedly (I can make it do it again) and it gives me a list of errors.
    So, for me anyway, all of these events are adding up to something wrong and since this all occurred after a click on a pig picture I can't get it out of my head that I have experienced some type of intrusion.
    almost forgot... My VS is via an MSDN subscription so I know the license is valid.
    Anyway... Thoughts and notions are appreciated.
    James Remick

    Has anyone ever seen or know of any malware, virus, or downloadable executable that was written with Powershell? I recently experienced a few contiguous events that all point to either malware or virus attempt when I clicked on an image of a pot belly
    pig (I know right).
    This is what happened:
    5.) After the VS license warning again the dialog box for Powershell pops up telling me that Powershell has stopped unexpectedly (I can make it do it again) and it gives me a list of errors.
    So, for me anyway, all of these events are adding up to something wrong and since this all occurred after a click on a pig picture I can't get it out of my head that I have experienced some type of intrusion.
    Anyway... Thoughts and notions are appreciated.
    James Remick
    James - you actually stated the cause right here. An intrusion.  This is typical malware behavior.  You have been invaded.  Do you have kids that visit gaming sites? Were you on a public server like a small company support server or some private
    site that may not be well managed?
    These are likely places to trip over this kind of invasion.  Clearing the browser cache and running up-to-date AV software will usually fix these older kinds of exploits.
    I have a test machine that I use to test AV releases. I have a list of known sites in China and Eastern Europe that are good injectors of a dozen know browser exploits.  I test to be sure that the malware is detected and that the session does not freeze. 
    I have seen many messages like yours andhave had the browser lock up.
    I have used PowerShell and VS for many years and never had an issue.  I also do not use a browser in an elevated or admin session.  I run as a standard user and avoid most public sites that I am not familiar with.
    I don't think you need to worry about PowerShell.  Reset your browser and run an AV scan.  He problem will likely be cleared.  Be sure to disable SSL 3.0 but leave TLS selected.
    ¯\_(ツ)_/¯

  • Cannot Input and Display Chinese Characters by using ODBC Applications

    Dear all,
    I am trying to input the Simplified Chinese Characters in the Oracle Database Ver 9.2 running on a UNIX AIX server. The client application we are using is th MS Access 2003 running on a MS Windows XP English version SP 2 without multi-language pack. MS Office 2003 is also an English version.
    Database setting is:
    NLS_CHARACTERSET=US7ASCII
    NLS_NCHAR_CHARACTERSET=AL16UTF16
    The Oracle Client used is also ver 9.2 with the ODBC driver ver 9.2. I have tried the following NLS_LANG settings by chaging the registry without any NLS_LANG environment settings:
    AMERICAN_AMERICA.ZHT16MSWIN950
    AMERICAN_AMERICA.ZHS16GBK
    AMERICAN_AMERICA.ZHT16HKSCS
    AMERICAN_AMERICA.AL32UTF8
    I have tied to load some Chinese Characters in by sqlload and by using the NLS_LANG AMERICAN_AMERICA.ZHT16MSWIN950, AMERICAN_AMERICA.ZHS16GBK and AMERICAN_AMERICA.ZHT16HKSCS, they can be display perfectly in SQLPLUS. But when using the same NLS_LANGs and display in the ACCESS, only ???? are displayed.
    When I tried to insert Chinese in ACCESS, the character changed to ???? again. No matter what Chinese characters I inserted by MS ACCESS, the ???? code can be dump with the binary code "03, 0f".
    Are there any methods or settings I need to change to make ACCESS an application for inserting and displaying Chinese characters from the Oracle database?
    I have tried to set the Non-Unicode setting in the Windows Locale setting:
    Chinese (Taiwan) (With AMERICAN_AMERICA.ZHT16MSWIN950),
    Chinese (Hong Kong S.A.R) (with AMERICAN_AMERICA.ZHT16HKSCS) and
    Chinese (PRC) (with AMERICAN_AMERICA.ZHS16GBK)
    when inserting the Chinese Characters by Access. But they all failed with ???? inserted in the DB.
    Please kindly advise what should be done.
    Thanks.

    Are you trying to store the character data in char/varchar2 columns?
    If that's the case then you have a problem, since a US7ASCII character set can only handle, well, ascii data.
    If you are trying to store the data in columns of nchar datatypes, then there might be a problem with literals because literals are converted to database character set first, before conversion to national (nchar) character set. Such data loss can also happen depending on how binds or oci calls are performed.
    You could use the dump() function to verify what's actually stored in a database column, without a db - client conversion happening that may distort the facts.
    Example:
    SQL> select col, dump(col, 1016) from table where some_condition;

  • Powershell and -contains

    Hi, 
    I have a little problem with powershell and "contains"
    In this situation works well and return "true"
    $test = "where is the word"
    ($test).Contains("word")
    but in this other return always "false" 
    $test = Get-Process
    ($test).Contains("winlogon")
    Why? 
    Thanks
    Andrea Gallazzi
    windowserver.it - blog:
    andreagx.blogspot.com
    This posting is provided AS IS with no warranties, and confers no rights.

    Hi,
    Try looking at the ProcessName property:
    PS C:\Scripts\PowerShell Scripts\Misc Testing\1-10-2014> $test = Get-Process
    PS C:\Scripts\PowerShell Scripts\Misc Testing\1-10-2014> $test.ProcessName.Contains('winlogon')
    True
    EDIT: If I remember correctly, I believe this requires PS3+ though.
    EDIT2: This will work if you only have v2 (I'm sure there's a better way to do this, but this'll work in a pinch):
    PS C:\> $found = $false
    PS C:\> $test = Get-Process
    PS C:\> $test | ForEach { If ($_.ProcessName.Contains('winlogon')) { $found = $true } }
    PS C:\> $found
    True
    Don't retire TechNet! -
    (Don't give up yet - 12,575+ strong and growing)

  • Powershell and robocopy pausing

    I am using powershell and Robycopy to move files from volume to another.  Server 2008R2 iSCSI volumes on
    It seems that powershell window occasionally pauses.  When I hit enter the process just starts up again.  It is taking more that a day to move 2TB of data.  Command is: robocopy h:\ j:\ /e /mov /R:5 /W:10 /log:c:\movedidson.log /TEE /NP /ETA
    Also an empty folder remains on the first drive.  Why is it not deleting the folders after it copies.
    Thanks,
    Mark

    Hi Mark,
    Total shot in the dark, perhaps this will help:
    http://social.technet.microsoft.com/Forums/en-US/ab36656d-bfbd-4ff1-ac7a-84e2ac975c1d/powershell-hangs?forum=winserverpowershell
    EDIT: Also, this isn't exactly a PowerShell question. You may be using PowerShell to launch robocopy, but that's pretty much the end of anything PowerShell related.
    Don't retire TechNet! -
    (Don't give up yet - 12,575+ strong and growing)

  • Asking Again: Group Description Updated in Admin UI is not reflected in PowerShell and vice versa

    I've updated the Groups Description (About Me) using the GUI / Website.  Then running a script to output the Group's Description like:
    $siteUrl = "site url"
    $web = Get-SPWeb $siteUrl
    $web.SiteGroups
    $web.Dispose()
    The description doesn't change.  I can then update the Description of the group using PowerShell and close the window then and run the above code the changes are reflected.  However, the GUI / Website doesn't have the changes.  Very odd!
    raym

    Hi raym,
    Does this still work for you?
    I am rapidly losing my mind over this...
    Is there anything that you left out or perhaps assumed that Noobs (like myself) would already know or have considered? ;)
    I have tried about ten different solutions and Nothing works.
    All I get is plain text.
    Set
    Group Description to HTML via PS Script (This will explain what I have - from my original request of the same)
    Please!! If anyone can shed some light on this before I scrap SP altogether and revert back to DOS. It is the Only thing of Microsoft that actually worked. Oh! and AOE2!! ;)
    TIA,
    Neil

  • Application page and powershell execution

    When I try to execute following code at Application page 
                    Runspace runspace = RunspaceFactory.CreateRunspace(InitialSessionState.CreateDefault());
    runspace.Open(); //this line of code raises exception
                    string script = "New-SPSite -URL http://testspweb/sites/testsitecollection500
    -OwnerAlias \"domain\\user\" –Language 1033 -CompatibilityLevel 14";
                    PowerShell powerShellCommand = PowerShell.Create();
                    powerShellCommand.Runspace = runspace;
                    powerShellCommand.AddScript("Add-PsSnapin Microsoft.SharePoint.PowerShell");
                    powerShellCommand.AddScript(script);
                    powerShellCommand.AddScript("Update-SPProfilePhotoStore
    -MySiteHostLocation http://testspweb/personal/spmember");
                    foreach (string result in powerShellCommand.Invoke<string>())
                    runspace.Close();
                    PowerShell ps = PowerShell.Create();
    I get following error:
    {"Requested registry access is not allowed."}
       at Microsoft.Win32.RegistryKey.OpenSubKey(String name, Boolean writable)
       at System.Environment.GetEnvironmentVariable(String variable, EnvironmentVariableTarget target)
       at System.Management.Automation.ModuleIntrinsics.GetExpandedEnvironmentVariable(String name, EnvironmentVariableTarget target)
       at System.Management.Automation.ModuleIntrinsics.SetModulePath()
       at System.Management.Automation.ExecutionContext.InitializeCommon(AutomationEngine engine, PSHost hostInterface)
       at System.Management.Automation.AutomationEngine..ctor(PSHost hostInterface, RunspaceConfiguration runspaceConfiguration, InitialSessionState iss)
       at System.Management.Automation.Runspaces.LocalRunspace.DoOpenHelper()
       at System.Management.Automation.Runspaces.RunspaceBase.CoreOpen(Boolean syncCall)
       at GenusMUIntergation.Code.Handlers.UpdateSharepointPhoto.ProcessRequest(HttpContext context)
       at System.Web.HttpApplication.CallHandlerExecutionStep.System.Web.HttpApplication.IExecutionStep.Execute()
       at System.Web.HttpApplication.ExecuteStep(IExecutionStep step, Boolean& completedSynchronously)
    HResult -2146233078
    How can i resolve this problem?

    I don't think is possible - to execute powershell in process that runs like IIS process.
    From first thread:
    " SPSecurity.RunWithElevatedPrivileges
    in your codeRunwithElevatedPrivileges will run the code under App Pool identity.Powershell should be run under Farm Account credentials as a Standard.Should we try,SPSecurity.RunWithElevatedPrivileges and use UserToken of Farm Account user.Please suggest or correct me, if I am wrong."
    The main problem that if I open page/httphandler with farm admin account I get exception (Microsoft.Win32.RegistryKey.OpenSubKey ) related with access rights to windows registry.
    When I try to execute command in SPSecurity.RunWithElevatedPrivileges , IIS App Pool identity dont have enouth access rights (it is not farm admin)
    I think that API for usage powershell is not intended to be executed from pages/webpart/httphandler/any IIS App pool process.
    API for usage powershell was intended for console applications.

  • Powershell (and only Powershell) can't see network drives.

    Having a bit of a strange issue with Powershell today, I went to open a script I had worked on last night and Powershell is telling me that it can't find my H: drive (my personal drive here at work) despite the fact that I'm browsing it just fine with my
    computer.
    Screenshot with error below - note that the image I uploaded is on that same H: drive, so it seems to be just Powershell!
    [email protected]

    Did you perhaps start your Powershell session with "Run as Administrator"? Even when logged on to an admin account I find that running powershell as admin with the same account causes it to be run in a process separate from the interactive session. As if
    it were running under different credentials, or at least using its own security token.
    If I need to access my home folder or other network shares normally available, I must then map them in that session.
    Al Dunbar -- remember to 'mark or propose as answer' or 'vote as helpful' as appropriate.
    This appears to be exactly what the issue is. How would you recommend manually mapping my personal drive, then, with new-PSdrive? (and if yes, what would the syntax be?)
    Thank you.
    [email protected]

  • Windows Powershell and HP Open Test Architect (TDApiOle80)

    I'm not sure that this is the correct forum to place this in. Please feel free to move it if needed...
    I have a task to create a new script using powershell and the OTA. When trying to log into quality center via the open test architecture in powershell I get this error. 
    At my computer char:22+ $td.InitConnectionEx $qualityCenterLink+ ~~~~~~~~~~~~~~~~Unexpected token '$qualityCenterLink' in expression or statement.
    At my computer char:11+ $td.Login $qualityCenterUsername, $qualityCenterPassword+
          ~~~~~~~~~~~~~~~~~~~~~~
    This is the code that I am using.
    $td = New-Object -ComObject "TDApiOle80.TDConnection"
    $td.InitConnectionEx $qualityCenterLink
    $td.Login $qualityCenterUsername, $qualityCenterPassword
    This code currently works in a script written with VBscript. I am just modifying the td variable to use powershell instead of vbscript. Do you all have any idea what it is that is causing this not to run? Also, Is powershell compatible with the OTA? I am assuming
    so only because the OTA is a COM package.

    it appears it doesn't like the formatting. It doesn't know how to handle the varibles
    Powershell thinks thinks these are 2 variable next to each other
    $td.InitConnectionEx $qualityCenterLinkmaybe put $td.InitConnectionEx($qualityCenterLink)$td.Login $qualityCenterUsername, $qualityCenterPasswordPowershell thinks thinks these are variable next to each other, with a comma separating two of themmaybe put $td.Login ($qualityCenterUsername, $qualityPasswrod)Maybe you can do $td | get-member, may that will show you how the arguments should look. I have neverused the OTA, just guessing here.

  • Commands not working on CMD and PowerShell

    Hi IT Folks,
    I'm running windows 8.1 x64 machine. All apps are working fine. But I'm having trouble on using command prompt and powershell.
    I can't use any command on command prompt, unless I'll run in it as administrator. It's kind a weird because my account is a member of domain admin group.
    Also my powershell, native command of windows won't run on powershell.
    Please hepl. thanks.
    akosijesyang - the conqueror

    Hi,
    How about your problem now? Is Brain's suggestion helpful?
    If you had any other question, please feel free let us know.
    Roger Lu
    TechNet Community Support

  • Learning about Powershell and IPV6 for 70-410

    I was reading up on the 70-410 exam as I am trying to study up before I take it at the end of the month and it appears knowing Powershell and IPv6 is necessary. Alot of the links I've searched don't seem to cover how Powershell interacts with managing
    a Server 2012 R2 machine and cover things like scripting, etc. Also, I want to know how would one study IPv6 since this is also important to the exam.

    Hi Matthew,
    For IPV6 you can read:
    " http://technet.microsoft.com/en-us/library/dn610908.aspx  " 
    The best way to study PowerShell is to practice with PowerShell (i.e. Configure the Server Core). This is what I did. :)  Good Luck 
    Greets,
    Kenan
    P.s. : " Training Guide: Installing and Configuring Windows Server 2012 " is a good book that can help you for preparing for 70-410 exam 

Maybe you are looking for

  • Archiving cost center line items for current period

    Hi, I was not able to archive & delete the cost center line items for current period.I was succesfull in deleting the past line items of the last periods. Raj

  • System not modified

    I cannot open a pdf sent to me because I get the following message: setup had detected that you already have a more functional product.   Adobe Reader 9 Setup interrupted before it could completely install.  Your system has not been modified, please

  • Web calendar interfase not started when starting http server

    Hi, I installed CS succesfully, the calendar server is working fine. My problem is that the web interfase is not started when starting the HTTP server. I checked the log files of the http server and I saw this: [Thu Jan  9 19:13:50 2003] [warn] [clie

  • Error Page After Run Project WebService onNetBeans4.1

    Hi All, I'm new to this group.. I'm working on Netbeans IDE5.0 Beta, and try following the steps to create a simple web service. But after creating the client application and packaging it , i got the following errors, case1: java.rmi.ServerException:

  • Vista SP1 Acrobat 8 Pro Freezing

    I've had this issue ever since I installed Vista SP1 on my PC. I have uninstalled, reinstalled, and updated Acrobat 8 Pro to 8.1.2 - the latest update. As soon as I open the program I have about 5 seconds until it freezes on me, similar to how it did