[Forum FAQ] How to remove div characters from multiline textbox field in SharePoint 2013
Scenario:
Need to avoid the div tags and get data alone from multiline textbox field using JavaScript Client Object Model in SharePoint 2013.
Solution:
We can use a regular expression to achieve it.
The steps in detail as follows:
1. Insert a Script Editor Web Part into the page.
2. This is the complete code, add it into the Script Editor Web Part and save.
<script type="text/javascript"> ExecuteOrDelayUntilScriptLoaded(retrieveListItems, "sp.js"); function retrieveListItems() { // Create an instance of the current context to return context information var clientContext = new SP.ClientContext.get_current(); //Returns the list with the specified title from the collection var oList = clientContext.get_web().get_lists().getByTitle('CustomListName'); //use CAML to query the top 10 items var camlQuery = new SP.CamlQuery(); //Sets value that specifies the XML schema that defines the list view camlQuery.set_viewXml('<View><RowLimit>10</RowLimit></View>'); //Returns a collection of items from the list based on the specified query this.collListItem = oList.getItems(camlQuery); clientContext.load(this.collListItem, 'Include(Title,MultipleText)'); clientContext.executeQueryAsync(Function.createDelegate(this, this.onQuerySucceeded), Function.createDelegate(this, this.onQueryFailed)); } function onQuerySucceeded() { //Returns an enumerator to iterate through the collection var listItemEnumerator = this.collListItem.getEnumerator(); //Remove div tag use a regular expression var reg1 = new RegExp("<div class=\"ExternalClass[0-9A-F]+\">[^<]*", ""); var reg2 = new RegExp("</div>$", ""); //Advances the enumerator to the next element of the collection while (listItemEnumerator.moveNext()) { //Gets the current element in the collection var oListItem = listItemEnumerator.get_current(); alert(oListItem.get_item('MultipleText').replace(reg1, "").replace(reg2, "")); } } function onQueryFailed(sender, args) { alert('Request failed. ' + args.get_message() + '\n' + args.get_stackTrace()); } </script> Result:<o:p></o:p>

References:
http://www.w3schools.com/jsref/jsref_obj_regexp.asp
Please click to vote if the post helps you. This can be beneficial to other community members reading the thread.
Reply:
If this helped you resolve your issue, please mark it Answered
------------------------------------
Reply:
function stripOutDivs(inputString) {
//This function returns inner HTML after parsing HTML string
var tmp = document.createElement("DIV");
tmp.innerHTML = inputString;
return tmp.textContent || tmp.innerText;
}
------------------------------------
Reply:
I need to remove both <div> and <br> tags, above thing is not working for me, do we need to give refrence of sp.js externally ?
for example I have description column and the value is :
<div class="ExternalClass97FE078B2F014F10B4987EF13169861B">The Solution Designer drives technical innovation based on broad and deep knowledge of 21st century technology (software, frameworks, hardware topology, database, …). </div><div class="ExternalClass97FE078B2F014F10B4987EF13169861B">Able to give short – and long-term direction resulting in clear guidance to a successful future. Regularly communicates and shares knowledge with the rest of the team and department. <br></div>
------------------------------------
VPN - Error 812
In thread titled "VPN error 812 and error 629 - testing VPN setup on internal LAN and getting this error", Glasgow suggested "allowed access in AD via the dial-in tab" to solve this issue.
I think it isn't a good solution because doing that prevents NPS to apply Network Access Conditions to the User Connection Request (unless option box "Ignore User Account Dial-in Properties" is selected).
The 812 error seems appearing for several reasons:
- when Server Network Policy and Client Connection Profile don't match on the Authentication Protocol. It is easy to fix;
- when NPS does not update (in memory I guess) value added to "Tunnel Type" Condition in Network Policy. That is more tricky.
Let's give an example for the second situation:
- a new Network Policy is set with "Day and time restrictions", "Operating system", "Windows group" and "Tunnel type" Conditions;
- "Tunnel Type" is valued with "PPTP" only;
When trying to connect VPN client, 812 error may appears.
How to fix that ?
- select additionnal value to "Tunnel type" Condition, like "L2TP" to obtain value "L2TP OR PPTP";
- apply and close the Network Policy;
- connect VPN client, it works !
- revert the Network Policy to the good value for "Tunnel type" Condition, here it is "PPTP" only;
- apply and close the Network Policy;
- connect VPN client, it works and your Network Policy is now well set up !
Hope this workaround will help some of you,
Nacime Amimar & Axel Limousin
ITSI - IT Training School
93500 Pantin, France
- Changed type Tiger LiMicrosoft employee Wednesday, July 20, 2011 3:07 AM
Reply:
Hi Nacime Amimar & Axel Limousin,
Thanks for your excellent sharing , this will must benefit someone who also encounter this situation in future.
Regards,
Tiger Li
TechNet Subscriber Support in forum
If you have any feedback on our support, please contact tnmff@microsoft.com.
Please 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.
------------------------------------
Reply:
I have been struggling with this issue for weeks - this little gem sorted it for me!
Specifically, when configuring RRAS to forward Authenticatioon requests to a seperate NPS server, it would simply stop working, regardless of how I configured the various conditions. Setting local authentication would work again.
As soon as I did as Nucime & Axel suggested, forwarding of Authentication requests burst into life!
Thanks!
------------------------------------
Reply:
Hi,
I have the same above problem but dont know where to make the below changes
How to fix that ?
- select additionnal value to "Tunnel type" Condition, like "L2TP" to obtain value "L2TP OR PPTP";
- apply and close the Network Policy;
- connect VPN client, it works !
- revert the Network Policy to the good value for "Tunnel type" Condition, here it is "PPTP" only;
- apply and close the Network Policy;
- connect VPN client, it works and your Network Policy is now well set up !
------------------------------------
Reply:
You can also get error 812 if the VPN server is Windows and has lost its trust relationship with the domain. When the VPN client comes in the server cannot find the user in the domain because of this condition.
If this happens you may have to remove the server from the domain (taking care that you have a local admin password that is tested and known to work), and then adding it back to the domain.
-David Borton
- Edited by David Borton Friday, September 26, 2014 4:19 PM
------------------------------------
Reply:
Hi Axel Limousin,
I am getting Microsoft IT VPN Connection Error 812.
*****************************************************************
Operating System : Windows NT 10.0
Dialer Version : 7.2.10130.0
Connection Name : Microsoft IT VPN
All Users/Single User : All Users
Start Date/Time : 6/29/2015, 10:39:11
******************************************************************
Module Name, Time, Log ID, Log Item Name, Other Info
For Connection Type, 0=dial-up, 1=VPN, 2=VPN over dial-up
******************************************************************
[cmdial32] 10:39:11 03 Pre-Init Event CallingProcess = C:\WINDOWS\system32\rasautou.exe
[cmdial32] 10:39:18 04 Pre-Connect Event ConnectionType = 1
[cmdial32] 10:39:18 06 Pre-Tunnel Event UserName = v-sichap@microsoft.com Domain = DUNSetting = SSTP DeviceName = TunnelAddress = msitvpn.ras.microsoft.com
[cmdial32] 10:39:38 21 On-Error Event ErrorCode = 812 ErrorSource = RAS
Please help to fix it. Its working fine on other machine in same network.
------------------------------------
Reply:
Hi Axel Limousin,
I am getting Microsoft IT VPN Connection Error 812.
*****************************************************************
Operating System : Windows NT 10.0
Dialer Version : 7.2.10130.0
Connection Name : Microsoft IT VPN
All Users/Single User : All Users
Start Date/Time : 6/29/2015, 10:39:11
******************************************************************
Module Name, Time, Log ID, Log Item Name, Other Info
For Connection Type, 0=dial-up, 1=VPN, 2=VPN over dial-up
******************************************************************
[cmdial32] 10:39:11 03 Pre-Init Event CallingProcess = C:\WINDOWS\system32\rasautou.exe
[cmdial32] 10:39:18 04 Pre-Connect Event ConnectionType = 1
[cmdial32] 10:39:18 06 Pre-Tunnel Event UserName = v-sichap@microsoft.com Domain = DUNSetting = SSTP DeviceName = TunnelAddress = msitvpn.ras.microsoft.com
[cmdial32] 10:39:38 21 On-Error Event ErrorCode = 812 ErrorSource = RASPlease help to fix it. Its working fine on other machine in same network.
------------------------------------
HSTS Headers for 2012 R2 ADFS
Is it possible to use HSTS (or other custom headers) when using ADFS 2012 R2. Is there a way to configure via HTTP.sys or onboard.js?
Thanks!
- Changed type Vivian_Wang Wednesday, December 24, 2014 2:48 AM
Reply:
Hi,
For this issue, i think you may ask in ADFS forums:
https://social.msdn.microsoft.com/Forums/vstudio/en-US/home?forum=Geneva
Regards.
Please remember to mark the replies as answers if they help and unmark them if they provide no help. If you have feedback for TechNet Support, contact tnmff@microsoft.com
------------------------------------
Reply:
Have you had any luck on configuring this?
I'm trying to configure HSTS on ADFS 3.0 on Server 2012 R2, going via 2012 R2 Web Application Proxy.
Concerning that it doesn't seem possible to configure HSTS headers (HTTP Strict Transport Security) on one of the key places it needs to be to help mitigate man in the middle attacks.
------------------------------------
Reply:
- Edited by JPeyton Friday, January 20, 2017 4:38 PM Typo
------------------------------------
VMM+SCORch+SCOM = extend disk size
Hello!
We have orchestrator runbook:
- SCOM alert low disk space
- VMM extend disk
- Inside VM disk extend
Trouble with the second stage extend VMM disk.
Virtual disk ID periodic change.
_______________________
Why is this happening?
How do we fix it?
Why my pc is running slow after upgrading to windows 10 build 10240
My pc is running so slow and there is this thing of .net framework 3.5 that I can't seem to understand and its running slow specially when I use the file explorer and the games in this window takes a terribly long time to start. Can anyone help me with this?
My pc specs is:
Intel I5- 3550
Ram- 8gb
Gpu- ATI Raedon HD 7770
Reply:
You may try to perform a Clean Boot to detect the problem.
https://support.microsoft.com/en-us/kb/929135
S.Sengupta, Windows Experience MVP
------------------------------------
Reply:
I'm having the same issue. How do you perform a Clean Boot?
------------------------------------
Reply:
Hi
I see you are running an ATI Graphics card, please try re-installing the latest graphics drivers to see if it fixes the issue.
I had the same problem after the upgrade and installing the graphics drivers seems to have fixed it
Regards
------------------------------------
Reply:
See this guide: How to perform a clean boot in Windows
-
Hessam
Windows Outreach Team- IT Pro
Windows for IT Pros on TechNet
------------------------------------
Reply:
My PC is running so slow also ... But, it was great for two weeks, why?
------------------------------------
Announcing Windows 10 Insider Preview Build 15014 for PC and Mobile
Windows Blog........
excerpt :
IMPORTANT: The download progress indicator shown when downloading this build is currently broken under Settings > Update & security > Windows Update. It may look like you're getting stuck at 0% or at other percentages. Ignore the indicator and be patient. The build should download fine and the installation should kick off. See this forum post for more details.
Reply:
As usual, remember to re-enable System Protection and create your FIRST 15014 restore point.
------------------------------------
Reply:
By the way, in my last insider 15007, there was this message .............Some Settings are managed by your organization.......... in the Windows Update screen.
It is no longer there on this 15014.
Build 15007..........
Build 15014...............
Update................
I was wrong. The damn message reappears.
Adding.............. I know it is just a bug. I have read the Blog posted above.
- Edited by david hk129 Friday, January 20, 2017 9:25 AM
------------------------------------
Appication cannot connect SQL Server with TLS 1.0 disabled
Hello
I have SQL Server 2014 (fully patched with SP and CU) on one vm (Windows Server 2012 R2). On the second vm (same OS) I have application. Recently TLS 1.0 has been disabled on all servers and app can't connect SQL now. From app config file I see "Provider=SQLOLEDB.1". I have seen https://support.microsoft.com/en-us/help/3135244/tls-1.2-support-for-microsoft-sql-server and I was able to fix other apps using .NET or ODBC but still don't know how to fix SQLOLEDB.1.
- Edited by Przemyslaw_sql_dba Thursday, January 19, 2017 10:33 AM
Reply:
Please post output from issuing this command on your SQL instance:
SELECT SERVERPROPERTY ('MachineName') as 'Host', SERVERPROPERTY ('InstanceName') as 'Instance', SERVERPROPERTY ('ProductVersion') as 'Version', SERVERPROPERTY ('ProductLevel') as 'Level', SERVERPROPERTY ('Edition') as 'Edition' ORDER BY 'Host' Thanks,
Phil Streiff, MCDBA, MCITP, MCSA
------------------------------------
Reply:
Hi Phil
Here are instance details (I had to rename host and instance name).
Host: WIN123
Instance: SQL123
Version: 12.0.5511.0
Level: SP2
Edition: Standard Edition (64-bit)
Thanks
------------------------------------
Reply:
What sql authentication do you have enabled on the SQL instance? 'SQL Server and Windows authentication mode' or just 'Windows authentication mode'?
Does the app connect with a Windows account or SQL account? What is the error message returned when connection attempt fails?
Is TLS 1.2 security protocol enabled on the SQL Server machine?
Can you post connection string (with fake password) used by the app to connect to SQL instance?
Thanks,
Phil Streiff, MCDBA, MCITP, MCSA
- Edited by philfactor Thursday, January 19, 2017 3:51 PM
------------------------------------
Reply:
App uses SQL auth.
Unfortunately app is not returning anything useful. It was working before windows patching at the end of Dec. I fixed other applications installing client components mentioned in https://support.microsoft.com/en-us/help/3135244/tls-1.2-support-for-microsoft-sql-server but still have a problem with that one and import to Excel 2013. I guess they both use SQL OLE DB Provider.
TLS 1.2 is enabled on SQL Server machine.
Connection string is OK. It was working before. The only important thing is Provider=SQLOLEDB.1.
------------------------------------
Reply:
Apparently, if your app uses a .NET Framework version lower than 4.6.1, the TLS 1.2 security protocol is not supported.
You should install .NET Framework version 4.6.1 (or above) on you app server to resolve the issue.
Alternatively, if you have to stay on .NET Framework 4.5.x, then...
.NET 4.5. TLS 1.2 is supported, but it's not a default protocol. You need to opt-in to use it. The following code will make TLS 1.2 default, make sure to execute it before making a connection to secured resource:
ServicePointManager.SecurityProtocol = SecurityProtocolType.Tls12
Reference:
.NET Framework versions and dependencies
TLS 1.2 and .NET Support: How to Avoid Connection Errors
[Please mark as answer if this post helps you]
Hope that helps,
Phil Streiff, MCDBA, MCITP, MCSA
- Edited by philfactor Thursday, January 19, 2017 10:03 PM
------------------------------------
Reply:
------------------------------------
Great Toll - year old but still great
- Changed type Wendy Jiang Friday, January 20, 2017 6:31 AM tool share
Reply:
Thank you for the share, it is great.
Best regards,
Wendy
Please remember to mark the replies as answers if they help.
If you have feedback for TechNet Subscriber Support, contact tnmff@microsoft.com.
------------------------------------
Netlogon back to Manual startup type after DC upgrade
Hey,
Since there doesn't seems to be a way to report feedback for Windows Server like there is for Windows 10, I'm creating a post here. (If anyone knows how to report feedback for Server 2016, please share).
Anyway, after upgrading a Windows Server 2012 R2 Server Core machine configured as a AD DC.
Before upgrading, the NetLogon service is set to Automatic, after an in-place upgrade, the service has it's startup type changed to Manual.
After changing it back to Automatic, things work like they should.
I haven't tested on a full UI server, so not sure if this is a Server Core issue, or a general upgrade issue.
So if anyone else experience issues after an upgrade, this might be the reason.
Reply:
Did you check event log for the same?
Is there any failure message on or after up-gradation time?
Regards,
Sandeep Poonia
Please verify the answer if it helps you.
------------------------------------
Reply:
Seems to be a bug of Windows 2016 upgrade?
Here's a similar recent post : https://social.technet.microsoft.com/Forums/windowsserver/en-US/74c54d71-c04f-421d-abaf-0d5bf35ec3b6/server-2016-inplace-upgrade-from-2012-r2-various-issues-netlogon?forum=winservergen
He says to set it back to Automatic and restart server after.
Regards,
Gilles Tremblay
MCSE Server and Desktop Infrastructures
MCSE Messaging, Collaboration, Productivity, Mobility, Cloud Platform and Infrastructure
------------------------------------
Reply:
I can confirm that solves the issue. Have seen it on over 4 DC upgraded in place and a few member servers as well.
HTH
------------------------------------
Reply:
This is a known bug, and there is a fix actively underway. Thank you for reporting the issue. Others have stated the workaround for now in manually modifying the service start state back.
Thanks!
Elden
------------------------------------
Reply:
Thank you for posting this GurliGebis!
I've just wasted two hours chasing my tail on my DC's NLA profile continually defaulting to "Private" instead of "Domain". I could get temporary success from restarting the NLA and/or the AD DS services, however a system reboot would make the network profile revert back to "Private".
Many thanks - I will be passing this info on to fellow system admins to save them the headache.
------------------------------------
Reply:
------------------------------------
Excel 2013 não está rodando no office 365
Olá.
Queria saber o que posso fazer para o excel 2013 rode no office 365
O programa chega abrir mas, não libera para ativar as macros para funcionar o que fazer
Reply:
Hi,
Thank you for visiting our forum.
The forum that you posted is the English only forum for Microsoft Office. To avoid any misunderstanding that may be caused by the translation tool and better help you, please describe your issue in English. Alternatively, you could post this issue in other forums with the right language.
You can also contact the local support from the link below:
http://support.microsoft.com/select/default.aspx?target=assistance&c1=505&
Thanks for your cooperation and your understanding is greatly appreciated.
Note: You can choose the right language by clicking the Change button from the left bottom of the page, and select the right product.
Best regards,
Yuki Sun
Please remember to mark the replies as answers if they helped.
If you have feedback for TechNet Subscriber Support, contact tnmff@microsoft.com.
------------------------------------
Ms Outlook - stop being a delegate
Reply:
In Exchange, you as a delegate can not remove the delegated permissions. However you can unmap them from Outlook.
For eg:- User-A Decides to grant fullaccess on his personal mailbox (or any sort of permission) to user-B. It is only User-A that has the power of attorney :) to remove the delegate access. Else, an Exchange administrator will help you overcome this problem. The admin will run below command to remove the permission
Remove-mailboxpermission -Identity User-A@example.com -user User-B@example.com -accessrights Fullaccess -inheritancetype all
How to unmap the supervisor's mailbox from Outlook:-
if you want to get rid of User-A's Calendar from your personal mailbox, it can be achieved by:-
- Navigate to your calendar > Right click on User-A's calendar > Delete Calendar
Also, you can unmap User-A's mailbox by following below:-
- Open Outlook > File > Account Settings > Account settings > Change > More settings > Advanced > Under "Open these additional mailboxes" > You will see your former supervisor's name added > Remove it and restart your outlook
Note:- Unmapping a mailbox/Calendar would not remove the permission.
Hope this helps
- Edited by Akabe Thursday, January 19, 2017 8:50 PM
------------------------------------
Amount of network traffic/packet size for policy evalution with MP
Hi Team,
Any idea what is the packet size for policy evolution that happens between config manger client and Management point?
we have single MP and we are finding that network is chocked even if nothing is deploying on the network, just wondering if simple policy synch/evaluation request from config manager client to management point could generate heavy traffic? any numbers that we could enumerate from log like 10 MB, KB etc. Any pointers will be appreciated. Thanks
Regards,
Reply:
Garth Jones
Blog: http://www.enhansoft.com/blog Old Blog: http://smsug.ca/blogs/garth_jones/default.aspx
Twitter: @GarthMJ Book: System Center Configuration Manager Reporting Unleased
------------------------------------
450 too many connections
<g class="gr_ gr_47 gr-alert gr_tiny gr_spell gr_run_anim ContextualSpelling multiReplace" data-gr-id="47" id="47">i</g> am receiving the above error message and all my outbound emails have been blocked.
regards,
<g class="gr_ gr_114 gr-alert gr_spell gr_run_anim ContextualSpelling ins-del multiReplace" data-gr-id="114" id="114">kiran</g>
Reply:
Hi,
There is no images. Only the source code.
Regards,
------------------------------------
Calendar syncing issues between Outlook 2016 and exchange 2013
Hi,
We have an Exchange server 2013 and I have Outlook 2016.
I succeeded to set the account without ActiveSync (My computer isn't in the domain), but the only thing that is syncing is the mail box. The calendar doesn't sync. It doesn't do any error, just finished the sync and doesn't grabbing the calendar.
Hope you'll be able to help.
Thank you.
P.S.
I have Outlook 2007 that succeeded to fully sync with the Exchange server.
- Edited by Nadavst Wednesday, January 18, 2017 7:24 AM
Reply:
Hi
In regards to the Outlook 2007 and compatibility with Exchange 2013 could be the issue. Do you have SP3 and all the latest security and CU updates?
Here are the requirements from Exchange 2013
Exchange Server 2013
The following Outlook client versions are fully supported by Exchange server 2013. Please bear in mind there's a difference between what is supported and what might be compatible with Exchange 2013. All of the Outlook versions listed below have been thoroughly tested by the Exchange Product group:- Outlook 2013
- Outlook 2010 SP1 with November 2012 Cumulative Update ( available from http://support.microsoft.com/kb/2687623
) - Outlook 2007 SP3 with November 2012 Cumulative Update ( available from http://support.microsoft.com/kb/2687404
) - Entourage 2008 for Mac, Web Services Edition
- Outlook for Mac 2011
Please note, each CU for Exchange 2013 is only supported for a period of 3 months after the release of the next CU. For example, if CU1 is released on 3/1 and CU2 is released on 6/1, CU1 support will end on 9/1.
Regards,
------------------------------------
Disabling mobile devices access for owa on selected users.
Hi,
Basically, I disable active sync and owa for devices for selected users. but while doing testing, users are still able to access their mailbox using outlook app on their iphone. May I know how to resolve this issue?
- Changed type Novice.C Thursday, January 19, 2017 4:59 AM
Reply:
Hi,
Sometimes it can take some time for the propagation after the settings has been applied. It could also be that the outlook app is connecting on a different protocol oppose to using EAS.
Regards,
------------------------------------
Reply:
------------------------------------
Reading pane is removed when i select 'Folders'
'Folders' which displays all the folders turns off the reading pane ( for a folder which is selected ) in Outlook 2016. Anybody facing the same problem?
- Edited by NikithaBM Thursday, January 19, 2017 5:22 AM
Incorrect availability in Scheduling Assistant recurring meeting with another time zone
There is a specific problem with Scheduling Assistant availability showing incorrectly that I have reported to Microsoft and want to share with the community. The problem is reproducible in Outlook 2013 software, and likely other versions of Outlook as well.
Issue:
One person is creating appointments for another person in a different Time Zone.
When you select Time Zones in the meeting, you will see correct availability in Scheduling Assistant
When you change the meeting to a Recurring meeting, the Scheduling Assistant no longer displays the correct availability. If you send the meeting anyway, it will send for the correct time slot. Only the visual information shown in the Scheduling Assistant is wrong.
NOTE: This is not reproducible in OWA-- OWA will always show the logged-in user's time zone and you cannot customize it in a new meeting.
Walking through this with an example, let's say Diana Smith is in Pacific Time, and she is creating meetings for Peter Johnson who is in Mountain Time. Diana has all the correct permissions to create calendar meetings on Peter's calendar. Diana creates a new Meeting on Peter's calendar. She selects Time Zones and specifically calls out Mountain Time on the meeting.
Diana selects Scheduling Assistant and can see the 12pm-1pm window is free on Peter's calendar. Wonderful!
Then, Diana selects Recurrence. Diana doesn't select a different time-- the Recurrence still shows 12pm-1pm Mountain Time.
Diana goes back to Scheduling Assistant and the availability jumped back one hour-- visually indicating that Peter is not free -- even though we know he is!
This is easiest to recreate by adding and removing a Recurrence that "Ends after 1 occurrence".
If Diana sends the appointment anyway, it will still send it for 12pm-1pm Mountain time and does not create a time conflict for Peter, even though he appears busy in the Scheduling Assistant.
If Diana removes Recurrence, the availability shows correctly!
In this business scenario, Diana is either forced to either :
- work in her own Time Zone always, or
- use two new meeting windows when working with other Time Zones: One non-Recurring meeting that is used to check true availability in Scheduling Assistant, and one that is the actual Recurring meeting that she needs to create for Peter.
This is not great for Diana, who does a lot of delegate work for employees in other time zones and must make recurring meetings for them often.
The official response from Microsoft was this:
I apologize for the inconvenience caused to you, But this is something which even we are getting when tested in our lab. It's the normal behavior of Outlook. You can provide your feedback to our product group team by clicking on the below URL. They may consider it and may release a fix in next update
Please click on the link mentioned below to provide feedback related to the product
http://office365.uservoice.com/
- Changed type Steve Fan Wednesday, January 18, 2017 2:54 AM
Reply:
Thank you for sharing. I can also reproduce this issue here. Have you posted to the UserVoice forum? If so, could you share the link here so that we can vote for it?
Thank you for your understanding.
Regards,
Steve Fan
Please remember to mark the replies as answers if they helped.
If you have feedback for TechNet Subscriber Support, contact tnmff@microsoft.com.
------------------------------------
Reply:
------------------------------------
Reply:
Thank you for the update. I've voted for the idea.
Regards,
Steve Fan
Please remember to mark the replies as answers if they helped.
If you have feedback for TechNet Subscriber Support, contact tnmff@microsoft.com.
------------------------------------
Issue with Surface Pro 4 pen and word document tables
Hi,
We recently received Surface Pros at work for the purposes of performing our regulatory inspections, with the idea being that we could write on the word documents using the surface pro pen while out in the field. However, our checklists are in the form of a table, with a row for each checklist question. The problem is that when I past the first page, and try to write with the pen in the table on subsequent pages, the ink mark will show up on every single page in the same spot. I'm a fairly advanced Microsoft Word user, and have tried everything in regards to adjusting my table settings, etc. How can I stop this from happening? It makes the Surface Pro useless for our purpose if we can't complete our checklists without the "ink" from the pen rendering on every page of the table.Thanks
Using Excel as a datas source for MDX query parameters
So I have the following Query:
SELECT NON EMPTY { [Measures].[Count] } ON COLUMNS, NON EMPTY { ([Organization].[Org Name].[Org Name].ALLMEMBERS * [Programs].[Name].[Name].ALLMEMBERS ) } DIMENSION PROPERTIES MEMBER_CAPTION, MEMBER_UNIQUE_NAME ON ROWS FROM (SELECT ( {
[Programs].[Program SK].&[55fad8c42767ca0dfc6eefeb],
[Programs].[Program SK].&[56d9ec25179a5e0a187dc0a2],
[Programs].[Program SK].&[5755c2e1c65af00d80f0963e],
[Programs].[Program SK].&[57600e3a4abc99039c221b18]
} ) ON COLUMNS FROM (
SELECT (STRTOMEMBER("[Date].[Date SK].&[" + Format(@FromDateDateSK,"yyyyMMdd") + "]", CONSTRAINED) :
STRTOMEMBER("[Date].[Date SK].&[" + Format(@ToDateDateSK,"yyyyMMdd") + "]", CONSTRAINED) ) ON COLUMNS FROM [Clicks])) WHERE ( [Programs].[Program SK].CurrentMember ) CELL PROPERTIES VALUE, BACK_COLOR, FORE_COLOR, FORMATTED_VALUE, FORMAT_STRING, FONT_NAME, FONT_SIZE, FONT_FLAGS
It works as expected and the report runs good...BUT...I have to create the same report for many program sets, these sets are maintained in excel either as different files or can be all together on one file and different tabs. In other words, each file/Tab would contain a set of programs by customer, so if I have lets say 10 customers I would have to create 10 reports and replace the specific programs on the query.
So I'm trying to get ideas on how to "parameterize" the report. So far I have tried working with excel as a data source to access a table that would have all the file names so the user can select the file for a specific customer and then pull the programs from the selected file and "create the custom query". Is this something doable?
Any other ideas on how to accomplish this?
Batch file to check if java 8u111 installed and run installer if it is not
Hi guys
I've been tasked @ our company to deploy a java (version 8 update 111) tol all domain joined computers. I have a few question regarding this task
- Is GOO Sofware installation is good to achieve the goal? [i've read a lot of forums and many guys says that GPO is worst way to accomplish the task. Most of guys advice to use startup script which will install java.exe itsel on computer startup.
- is there a script that first would chek if java 8 update 111 is installed, if not, install new version of required version of java.
To be honest I'd like to use startup script and I can:
- remove old java setup 6u2 - shutdown script: wmic product where "name like 'Java(TM) 6%'" call uninstall
- I. An install new java with /quiet switch with no problem
I just cannot check if 8u111 is installed first. My script would always reinstall jaba 8u111 everytime when computer boots.
Need sometching like the
if java 8u111 is installed then exit bat else run installer /quiet
every help would be greatly appreciated.
Vusal M. Dadashzadeh
- Changed type Bill_Stewart Friday, February 17, 2017 7:12 PM
- Moved by Bill_Stewart Friday, February 17, 2017 7:12 PM This is not software deployment support forum
Reply:
First, this is not a "I need help deploying a software" forum. Those questions are best asked in forums specific to that topic, or you can ask the vendor.
Second, you may have missed the first post from the top of this forum:
This forum is for scripting questions rather than script requests
-- Bill Stewart [Bill_Stewart]
------------------------------------
Reply:
When we used to use Java I deployed updates with a GPO with never an issue.
The Java forums will help you to achieve this correctly. Post in the Oracle Java forum for Windows and someone will likely havee instructions.
\_(ツ)_/
------------------------------------
Reply:
Bill
and that means that nobody will help :) ?
Vusal M. Dadashzadeh
------------------------------------
Reply:
Bill
and that means that nobody will help :) ?
Vusal M. Dadashzadeh
You need to ask you question in the Oracle forums. I recommend getting some help understanding how Java is installed and replaced. We cannot teach you this. You can also try searching for others with the same issue as your question has been asked many times.
\_(ツ)_/
------------------------------------
Reply:
and that means that nobody will help :) ?
It means you are not asking in the correct place.
-- Bill Stewart [Bill_Stewart]
------------------------------------
"Fantastic post! Your perspective on this topic is refreshing."
ReplyDeletePG Diploma In Clinical Research
Best Clinical Research Courses
Online clinical research courses in pune
Pharmacovigilance Syllabus
"This post was very helpful—thanks for breaking it down so clearly."
ReplyDeleteClinical Research Courses in Banglore
Clinical Research Courses in Nagpur
Clinical Research Courses in Amravati
You're doing an amazing job with your content—keep inspiring us!
ReplyDeleteMedical Coding Courses in Banglore
Medical Coding Courses in Pune
Medical Coding Courses in Nagpur
Medical Coding Courses in Amaravati